如何在.htaccess中使用mod_rewrite删除子目录

时间:2015-10-31 10:40:53

标签: php apache .htaccess

我的所有网站网址都是

http://example.com/myfolder/main/other/extra/index.php

我希望将其重写为

http://example.com/index.php

1 个答案:

答案 0 :(得分:0)

请尝试以下规则:

Options +FollowSymlinks
RewriteEngine on
rewriterule ^myfolder/main/other/extra/index.php(.*)$ http://example.com/index.php$1 [r=301,nc]
相关问题