【发布时间】:2021-10-12 23:36:21
【问题描述】:
有这样的代码
<IfModule mod_rewrite.c>
RewriteCond %{QUERY_STRING} !^$
RewriteCond %{QUERY_STRING} !(^|&)srp=
RewriteCond %{QUERY_STRING} !(^|&)q=
RewriteRule ^(.+?)\.html$ https://%{HTTP_HOST}/$1.html? [L,R=301]
</IfModule>
<IfModule mod_rewrite.c>
RewriteRule ^(.+?)\.html(?!/amp/).+$ https://%{HTTP_HOST}/$1.html? [L,R=301]
</IfModule>
效果很好,但是如果链接是这样的:
website.com/post.html?
在这种情况下,问号仍然存在。在这种情况下如何删除它?
【问题讨论】:
标签: apache .htaccess mod-rewrite