标签: php apache .htaccess
我的所有网站网址都是
http://example.com/myfolder/main/other/extra/index.php
我希望将其重写为
http://example.com/index.php
答案 0 :(得分:0)
请尝试以下规则:
Options +FollowSymlinks RewriteEngine on rewriterule ^myfolder/main/other/extra/index.php(.*)$ http://example.com/index.php$1 [r=301,nc]