Configure Apache for redirecting to sub-pagesΒ Β 

ApacheΒ 

If your Apache web server cannot open sub-pages directly by clicking them on front-end implementation, use these codes.

Modify Apache default files such as Β 000.default.confΒ Β orΒ default-ssl.confΒ with following lines:Β 

<Directory “/var/www/html”> 

        RewriteEngine On 

        RewriteCond %{REQUEST_FILENAME} -f [OR] 

        RewriteCond %{REQUEST_FILENAME} -d 

        RewriteRule ^ – [L] 

        RewriteRule ^ index.html [L] 

</Directory> 

======================

Don’t forget to run after modification : 

sudo a2enmod rewrite 

sudo systemctl restart apache2