如何让 mod_rewrite 忽略某些目录及其所有子目录?
我正在使用 Symphony CMS,默认情况下有一个 mod_rewrite 可以重写所有目录。
但是,我需要它忽略目录 test
和 transfer
及其所有子目录。
I'm using Symphony CMS which as default has a mod_rewrite that rewrites all directories.
However, I need it to ignore the directories test
and transfer
and all their subdirectories.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在两个目录中分别放置一个新的 .htacess 访问文件,然后将以下内容放入:
mod_rewrite off
这应该对其进行排序。
Place a new .htacess access files in each of your two directories, and then place the following in:
mod_rewrite off
That should sort it.
将此规则置于其他规则之上:
Put this rule above the others: