InterviewSolution
Saved Bookmarks
| 1. |
How to redirect https to HTTP URL through .htaccess? |
|
Answer» PLACE this CODE in your htaccess file. RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] |
|