How to redirect all link HTTPS to HTTP in subfolder hidden by using mod_rewrite
For example, https://homepage.com/public to http://homepage.com/public with public is hidden URL
How to redirect all link HTTPS to HTTP in subfolder hidden by using mod_rewrite
For example, https://homepage.com/public to http://homepage.com/public with public is hidden URL
You can try this
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
Note, This site has similar questions with accepted answers!