使域上的所有页面都通过特定页面

时间:2017-04-14 22:27:32

标签: php .htaccess

我正在尝试获取域中的所有页面,例如在域example.com上通过index.php而不编辑url。我可以使用htaccess和php。例如,在域example.com上,我可以访问example.com/thefile.php,它仍然会显示主文件。

1 个答案:

答案 0 :(得分:0)

我通过使用NamelessMC的.htaccess来解决这个问题。 .htaccess文件是:

Options +FollowSymLinks

Options -Indexes

RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-d

RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^.*$ ./index.php