Caipiranha
Caipiranha

Reputation: 55

301 redirect from https to http on ONE link

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

Answers (1)

Panama Jack
Panama Jack

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

Related Questions