我正在尝试在 iirf 中做一些非常简单的事情。
我想要所有缺少 www 的请求。添加前缀。
这是我的 IsapiRewrite4.ini:
RewriteCond %{HTTP_HOST} ^example\.com$ [I]
RewriteRule ^(.*)$ www.example.com/$1 [R=301,L]
这是我的 SampleUrls.txt:
example.com
example.com/grants
www.example.com
www.example.com/grants
我将文件放在与 TestDriver.exe 相同的目录中,然后运行 testdriver -d 。所有测试都被忽略:
NO ACTION 'example.com' ==> --
NO ACTION 'example.com/grants' ==> --
NO ACTION 'www. example.com' ==> --
NO ACTION 'www. example.com/grants' ==> --
谢谢,
阿什利