I am trying to remove the whole query string from the url using this...
RewriteRule ^/page /page?
But it is not working any reason why this is happening???
Thanks
I am trying to remove the whole query string from the url using this...
RewriteRule ^/page /page?
But it is not working any reason why this is happening???
Thanks
RewriteEngine On
RewriteCond %{QUERY_STRING} ^page$
RewriteRule (.*) $1? [R=permanent]
I suggest you write your rewrite rules like this:
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^page /page? [NC,R,L]
Remember leading slash /
is stripped in matching RewriteRule by Apache.