Reputation: 113
This is my page http://example.com/index.html . I would like to make it work like this.
I have already tried
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/index.html$ http://def.com
Upvotes: 0
Views: 51
Reputation: 279
Change your htaccess file to this:
RewriteCond %{QUERY_STRING} ^$ [OR]
RewriteCond %{QUERY_STRING} !headers
RewriteRule ^index.html$ http://def.com [R=301,L]
Upvotes: 1
Reputation: 279
Change your htaccess file to this:
RewriteCond %{QUERY_STRING} ^(headers=0|)$ [NC]
RewriteRule ^index.html$ http://def.com [R=301,L]
Upvotes: 1