所以这是我的情况。 我需要将localhost / admin重写为admin / index.php ALSO localhost / admin / anysubfolder to admin / index.php
AND当你在root localhost / to /index.php和ALSO localhost / anysubfolder / subfolder时,无论是/index.php (如果它的管理员会做先前的规则)
目前我有
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^admin/(.*)$ admin/index.php [NC]
此规则将localhost重定向到localhost / admin并使用" admin"文件夹。 我做错了,所以请帮助我!