我现在在 .htaccess 中有这段代码:
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} (.+)$
RewriteRule ^(.*) http://www.%1/$1 [L,R=301]
现在我需要将我的 cgi 脚本 cgi-bin/test.cgi 重定向到https://www.example.com/cgi-bin/test.cgi
我已经试过了
RewriteRule ^cgi-bin/test.cgi$ https://www.example.com/cgi-bin/test.cgi [L]
还有其他一些变化,但它不起作用
请帮忙!