php – 我需要一个htaccess规则,如果url在主域后面包含问号

我需要一个htaccess规则,如果url在主域后面包含问号

例如:

http://example.com/?

要么

http://example.com/?xyz

它应该被重定向到home / index页面

最佳答案 在root / .htaccess中试试这个

RewriteEngine on

RewriteCond %{QUERY_STRING} ^.*$
RewriteRule ^/?$/? [NC,L,R]

目标路径末尾的空问号是重要的,因为它丢弃了原始查询字符串,在apache 2.4及更高版本中,您可以使用QSD Flag来丢弃查询字符串.

如果上述规则失败,请尝试

RewriteEngine on
RewriteCond %{THE_REQUEST} /\?([^\s]+) [NC]
RewriteRule ^/?$/? [NC,L,R]
点赞