我的 apache 网络服务器将所有 http 流量重写为 https,但是我不想重写一个 url (example.com/facebook/any_word)。我想如果我把这条规则放在将所有 http 重写为 https 的规则之上,并在上面放一个标志 L - 它会起作用。但事实并非如此。我究竟做错了什么?
.htaccess 文件:
RewriteRule ^/facebook/(.*)?$ /index.php/$0 [PT,L] #this rule is not applied...
#...other rules which rewrites http to https....