从URL到.htaccess隐藏子文件夹

时间:2016-09-07 02:22:26

标签: .htaccess

如何从网站上的网址中隐藏所有子文件夹?

所以http://www.example.com/whatever只显示为http://www.example.com

1 个答案:

答案 0 :(得分:0)

把它放到你的htaccess:

RewriteEngine On
RewriteRule ^ index.php [L]

您的所有请求都将被重写为index.php,这将实现您所描述的内容。