私の Apache Web サーバーはすべての http トラフィックを https に書き換えますが、書き換えたくない URL (example.com/facebook/any_word) が 1 つあります。すべての http を https に書き換えてフラグ L を設定するルールの上にこのルールを配置すると、機能することがわかりました。しかし、そうではありません。私は何を間違っていますか?
.htaccess ファイル:
RewriteRule ^/facebook/(.*)?$ /index.php/$0 [PT,L] #this rule is not applied...
#...other rules which rewrites http to https....