htaccess 也重定向子文件夹

发布于 2024-11-12 10:56:46 字数 435 浏览 0 评论 0原文

我是 htaccess 规则的新手。我试图搜索我的问题但无法得到答案,所以我在这里写下这个问题。

我的 php 应用程序的根文件夹中有以下 htaccess 文件

RewriteCond %{HTTP_HOST} www.mydomain.com
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php

现在,如果我添加任何子文件夹 images/ 我会收到错误消息“找不到 URL”。我怀疑某些 htaccess 规则导致了这种情况。

如果有人能向我解释原因,我将非常感激。

谢谢你,

I am new to htaccess rules. I have tried to search about my questionm but couldn't get the answer, so I am writing the question here.

I have the following htaccess file in my root folder of my php application

RewriteCond %{HTTP_HOST} www.mydomain.com
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php

Now if I add any sub-folder images/ I get the error stating "URL not found". I suspect some of the htaccess rules is causing this.

I would really appreciate if someone could explain me the cause.

Thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

吃→可爱长大的 2024-11-19 10:56:46

您的重写条件是将每个网址应用到您的域。您可以执行的操作从中排除图像文件。我认为使用这个会有帮助

RewriteCond %{REQUEST_URI} !^(images)

Your rewrite condition is applying every url to your domain. What you can do exclude image files from this. I think using this will help

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