.htaccess 文件重写问题(允许特定字符串)

发布于 2024-10-20 07:02:39 字数 302 浏览 0 评论 0原文

中编写了以下代码

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千柳 2024-10-27 07:02:39

您可以在RewriteRule之前添加index.php的重写条件

RewriteCond %{REQUEST_URI} !^index\.php$

,这样它就不会重定向index.php

You can add a rewrite condition for index.php before your RewriteRule

RewriteCond %{REQUEST_URI} !^index\.php$

So it will not redirect index.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文