Forum Moderators: phranque
SetEnvIf Request_URI "\.php$" ban Deny from env=ban SetEnvIf Request_URI "\.php$" ban
Deny from env-ban Deny from env-ban
SetEnvIf Request_URI "\.php$" ban
Options +FollowSymLinks
RewwriteEngine on
#
RewriteRule ^go-to-google\.html$ http://www.google.com/ [R-301,L]
Look to be sure that you've got that "Deny from env=ban" directive somewhere on your file. If not, then that is the problem.
Redirect /x http://example.com/z
RedirectTemp /x http://example.com/z
RedirectMatch ^/x http://example.com/z
Redirect 302 /x http://example.com/z
RedirectMatch 302 ^/x http://example.com/z
Redirect Temp /x http://example.com/z
RedirectMatch temp ^/x http://example.com/z
Redirect /x /z
RedirectTemp /x /z
RedirectMatch ^/x /z
Redirect 302 /x /z
RedirectMatch 302 ^/x /z
Redirect temp /x /z
RedirectMatch Temp ^/x /z
RewriteRule ^x http://example.com/z
RewriteRule ^x http://example.com/z [L]
RewriteRule ^x http://example.com/z [R]
RewriteRule ^x http://example.com/z [R,L]
RewriteRule ^x http://example.com/z [R=302]
RewriteRule ^x http://example.com/z [R=302,L]
RewriteRule ^x http://example.com/z [R=temp]
RewriteRule ^x http://example.com/z [R=Temp,L]
RewriteRule ^x /z [R]
RewriteRule ^x /z [R,L]
RewriteRule ^x /z [R=302]
RewriteRule ^x /z [R=302,L]
RewriteRule ^x /z [R=temp]
RewriteRule ^x /z [R=temp,L]