0
我有一個htaccess重寫規則代碼,它可以在Apache上運行,但不能在litespeed上運行。通過htaccess阻止所有用戶代理除了一個
<Files "bg.js">
SetEnvIfNoCase User-Agent .*autoit.* search_robot
Order Deny,Allow
Deny from All
Allow from env=search_robot
</Files>
我想阻止除那些不區分大小寫的匹配autoit
所有useragents。
如何讓重寫規則在litespeed上工作?