Imran AK
Imran AK

Reputation: 113

Apache redirect & rewrite

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

Answers (2)

Sreedev S B
Sreedev S B

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

Sreedev S B
Sreedev S B

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

Related Questions