删除 .htaccess 中的 GET 参数
我无法删除一个 404 SEF 模块错误添加的 GET 参数.
I'm not able to remove one GET parameter wrongly added by one 404 SEF module.
仅当task=view"单独出现而不与其他参数一起出现时,我才想删除它.
I want to remove "task=view" only if it appears alone and not with another parameter.
所以
www.mysite.com/1.html?task=view 应重定向到 www.mysite.com/1.html.
虽然 www.mysite.com?task=view&view=article 应该保持不变.
While www.mysite.com?task=view&view=article should remain unchanged.
无论我使用哪个 RewriteRule,这个参数都不行.看起来它是在运行 index.php 时从任何环境变量生成的.
No matter which RewriteRule I use, this paramater does not go. Looks like it is being generated from any environment variable when index.php is run.
例如这不起作用:
RewriteCond %{QUERY_STRING} ^task=view$ [NC]
RewriteRule (.*)task=view.* $1 [R=301,L]
这是我的 .htaccess 文件:
Here is my .htaccess file:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
RewriteCond %{QUERY_STRING} base64_encode.*(.*) [OR]
RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|.php|.html|.htm|.feed|.pdf|.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
Options -Indexes
如何处理?
使用这个规则:
RewriteCond %{QUERY_STRING} ^task=view$ [NC]
RewriteRule ^(.*)$ $1? [R=301,L]
?
在 $1
的末尾将删除任何现有的查询字符串.
?
at the end of $1
will strip-off any existing query string.