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