我想重定向除index.php
页面内特定部分之外的所有页面。
example.com?pagerequest
像这样:example.com?pagerequest#navigation
答案1
使用如下方法:
RewriteCond %{REQUEST_URI} !=/index.html
RewriteRule ^(.*)$ $1?%{QUERY_STRING}#navigation [R,NE]
我想重定向除index.php
页面内特定部分之外的所有页面。
example.com?pagerequest
像这样:example.com?pagerequest#navigation
使用如下方法:
RewriteCond %{REQUEST_URI} !=/index.html
RewriteRule ^(.*)$ $1?%{QUERY_STRING}#navigation [R,NE]