如何使.htaccess将所有管理员/子文件夹重写为admin / index.php,将其他文件重写为/index.php

时间:2014-10-09 18:37:54

标签: php .htaccess mod-rewrite xampp rewrite

所以这是我的情况。 我需要将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"文件夹。 我做错了,所以请帮助我!

0 个答案:

没有答案