http://localhost/site/contactus.php
http://localhost/site/aboutus.php
http://localhost/site/home.php
如何将所有这些请求路由到
http://localhost/site/admin/index.php
答案 0 :(得分:1)
在/site/.htaccess
内,您可以使用以下规则:
RewriteEngine On
RewriteBase /site/
RewriteRule ^[^/]+?\.php$ admin/index.php [L,NC]