.htaccess规则从整个网址跳过文件夹名称

问题描述 投票:0回答:1

我的项目名称是funfeesa,所有客户端页面都包含在“client”文件夹中。但我想访问,而不是在URL中写入客户端文件夹。如下所示:

localhost/funfeesa/index.php

我在.htaccess文件中尝试了很多规则,但没有什么工作正常。谁能帮我?

.htaccess url-rewriting localhost
1个回答
0
投票
#prevent directory listing
Options -Indexes
IndexIgnore */*


#follow symbolic links
Options FollowSymlinks
RewriteEngine on
RewriteRule ^funfeesa/index.php(.+)?$ funfeesa/client/index.php/$1

尝试访问上面的.htaccess文件

如果它不起作用尝试从上面的规则删除index.php但我认为它应该工作:)

© www.soinside.com 2019 - 2024. All rights reserved.