我尝试重定向以下网址:
https://www.domain.tld/
到
.htaccess
但它似乎比我想象的要复杂得多。
以下是我在RewriteRule ^%20rel=$ /?&%{QUERY_STRING}
RewriteRule ^%20rel=$ /? [L,R=301]
Redirect 301 /%20rel= https://www.domain.tld/
文件中使用的一些方法:
datasets
和其他人,但不适合我。有人可以帮忙解决这个问题吗?
答案 0 :(得分:1)
您可以使用此规则:
RewriteEngine On
RewriteRule ^\x20rel=/?$ / [L,R=301]
您需要使用\x20
来匹配%20
或一般使用\xhh
来匹配任何%hh
字符。