我的托管已禁用虚拟目录映射,因此我需要使用mod_rewrite。 请指导我怎么做。我想将http://example.com/folder/dashboard.php映射到http://example.com/dashboard.php
答案 0 :(得分:0)
在文档根目录的htaccess文件中,添加:
RewriteEngine On
RewriteCond $1 !^folder/
RewriteRule ^(.*)$ /folder/$1 [L]
然后确保所有链接看起来都像http://example.com/dashboard.php