我正在尝试获取域中的所有页面,例如在域example.com上通过index.php而不编辑url。我可以使用htaccess和php。例如,在域example.com上,我可以访问example.com/thefile.php,它仍然会显示主文件。
答案 0 :(得分:0)
我通过使用NamelessMC的.htaccess来解决这个问题。 .htaccess文件是:
Options +FollowSymLinks
Options -Indexes
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^.*$ ./index.php