Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 www.example.com 重写(而不是重定向)到文件夹名称。我写:
RewriteEngine On RewriteRule ^/?$ foldername
但是 .htaccess 正在重定向到 www.example.com/folder,我想保留 www.example.com
尝试添加一个尾斜线;RewriteRule ^/?$ foldername/
RewriteRule ^/?$ foldername/
改为使用此规则:
RewriteRule ^$ foldername [L]