Forum Moderators: phranque
Now I want to redirect https requests to http & while redirecting I want to dispaly message that "https is going to replace by http so please change your favouites "
Basically redirect https to http & message screen for 5 seconds ( displaying custom message )
Any pointers?
RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
If you want to display a message, then you'll need a script or SSI or PHP page that displays the message, gets the originally-requested URL, and does a meta-refresh to it after a few seconds.
Jim