Apache is the robust and secure web server which is used across the world with a market share of approximately 48.2% (source is from https://w3techs.com).
Enabling an redirect to the new url for any uri request on a particular domain.
For example, we want to redirect all queries which are coming to:
blog.techsteppers.com
blog.techsteppers.com/pages
blog.techsteppers.com/pages/abc
so we want all above uri requests should goto https://blog.techsteppers.com/index.html
to achieve this we need to do following:
goto you httpd.conf file and add following lines into your https part:
RewriteCond %{REQUEST_URI} !=/index.html
RewriteRule ^ /index.html [R=302]
that will redirect all the requests to index.html page of your website
Apache password obfuscation:
apache – ServerAlias not working
checked the httpd.conf and ssl.conf files and found that below etries should be replaced with correct one –
Incorrect Entry:
ServerName test.techsteppers.com:443
ServerAlias www.test.techsteppers.com:443
Correct Entry:
ServerName test.techsteppers.com
ServerAlias www.test.techsteppers.com