在我的场景中,我重定向了 “/index/../”改为“/index.php?act= ..” 我想知道如何限制直接访问“/index.php”,但仍然可以从“/ index /../"?
重定向P.S。 “/../”是什么......似乎你不能在那里使用*。 O.o
答案 0 :(得分:0)
将以下内容添加到重写脚本中
RewriteCond %{REQUEST_URI} !index.php$ [NC]
。对于/index.php
(但不是/index.php?whatever
),此规则将失败。至少我认为它会,我还没有测试过。