如果你看
http://ecocool.zadesigns.com
点击help
链接,它转到
http://ecocool.zadesigns.com/help
这行得通,但如果您实际输入“ http://ecocool.zadesigns.com/help.html ”
这没用。
我如何修改 htaccess 文件,以便如果我输入
http://ecocool.zadesigns.com/help.html
进入地址栏,它会.html
从 URL 中删除,加载 index.php 文件,然后将我发送到正确的页面。
这是htaccess文件。
<ifModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index
RewriteRule ^(.*)$ index.php?q=$1 [NC,L,QSA]
</ifModule>