.htcaccess 仅将根目录(“/”)重定向到子文件夹

发布于 2024-08-20 05:52:12 字数 233 浏览 10 评论 0原文

我有一个这样安排的网站:

/about

/css/

/index/index.php

/js/

/index.php

index.php 使用 PHP 重定向到 index/index.php

我想创建一个 .htaccess 重写规则,以便当访问根目录时,显示 /index/index.php 但 /about 等保持不变。

I have a site that is arranged thus:

/about

/css/

/index/index.php

/js/

/index.php

index.php uses a PHP redirect to index/index.php

I want to create a .htaccess rewrite rule so that when the root is accessed, /index/index.php is displayed BUT /about etc. stays the same.

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

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

发布评论

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

评论(2

追我者格杀勿论 2024-08-27 05:52:12

如果你有 mod_rewrite 这应该可以工作:

RewriteEngine on
RewriteRule ^$ /index/index.php [L]

它只会匹配 / (它认为是空的)并在内部重定向到 /index/index.php

If you have mod_rewrite this should work:

RewriteEngine on
RewriteRule ^$ /index/index.php [L]

That will only match / (which it sees as empty) and internally redirect to /index/index.php

无人接听 2024-08-27 05:52:12

下面将使/显示index/index.php作为其索引文件

DirectoryIndex index/index.php

只需将其放入/的.htaccess中

The following will make / display index/index.php as its index file

DirectoryIndex index/index.php

Just put it in the .htaccess for /

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