标签: .htaccess
如何从网站上的网址中隐藏所有子文件夹?
所以http://www.example.com/whatever只显示为http://www.example.com。
http://www.example.com/whatever
http://www.example.com
答案 0 :(得分:0)
把它放到你的htaccess:
RewriteEngine On RewriteRule ^ index.php [L]
您的所有请求都将被重写为index.php,这将实现您所描述的内容。