如何使用具有问号的网址编写RewriteCond

时间:2018-12-05 07:05:20

标签: .htaccess

我正在尝试使用我的http://文件中的以下代码将网站重定向到/index.php?view=custom,并将网址重定向为https://,并将所有其他网址重定向至htaccess

RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/index.php\?view=custom
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

但是RewriteCond无法正常工作,它正在将所有页面重定向到https://,因为它在url中带有问号,因此如何写它。我不太了解syntex。我该怎么做?

0 个答案:

没有答案