【发布时间】:2016-03-07 23:03:20
【问题描述】:
这是我的 .htaccess 文件
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
我需要这个 www.domainname.com/folder-name/
重写/重定向到这个
www.domainname.com/folder-name/index.html
无需搞砸 htaccess 中已有的内容。
所以我很清楚...当一切都说完后,我希望 www.domainname.com/folder-name/ 显示在 URL 栏中,但我希望呈现 index.html 中的内容。
【问题讨论】:
标签: .htaccess