我正在尝试重定向到www.example.com
具有特定查询字符串(when option
is com_estateagent
)的基本 url () 请求。
我尝试了以下语法:
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^option=com_estateagent$
RewriteRule .* index.php [R=301, L]
但它会被忽略。
有什么建议么?
编辑
我要更改的网址是这样的:
http://www.example.com/subdirectory/index.php?option=com_estateagent...