.htcaccess 仅将根目录(“/”)重定向到子文件夹
我有一个这样安排的网站:
/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有 mod_rewrite 这应该可以工作:
它只会匹配 / (它认为是空的)并在内部重定向到 /index/index.php
If you have mod_rewrite this should work:
That will only match / (which it sees as empty) and internally redirect to /index/index.php
下面将使/显示index/index.php作为其索引文件
只需将其放入/的.htaccess中
The following will make / display index/index.php as its index file
Just put it in the .htaccess for /