.htaccess 文件重写问题(允许特定字符串)
中编写了以下代码
我在 htaccess RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
我不想重写index.php 文件。 index.php 文件应该在打开时打开。我也没有在 htaccess 中使用任何分隔符“dir/”。主要是我将如何检查允许的特定字符串?
谢谢
I have written below code in htaccess
RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
I don't want to rewrite index.php file. index.php file should open as it opens. and i also not using any sepecrator "dir/" in htaccess. Mainly how will i check for specific strings to allow ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在RewriteRule之前添加index.php的重写条件
,这样它就不会重定向index.php
You can add a rewrite condition for index.php before your RewriteRule
So it will not redirect index.php