I'd like to make a 301 redirect
, but only on one specific link:
http://www.example.com/example.html
in htaccess, Apache
I'd like to make a 301 redirect
, but only on one specific link:
http://www.example.com/example.html
in htaccess, Apache
You can try this
RewriteEngine on
RewriteCond %{HTTPS} ^on
RewriteRule ^example\.html$ http://www.example.com/example.html [R=301,L]