【发布时间】:2014-09-02 15:13:00
【问题描述】:
我有这个 htaccess 文件,当 url 的类型为 www.mywebsite.com/news 时,它会重定向到 index.php 但是当 url 的类型为 www.mywebsite.com/news/2 它显示 index.html 但没有应用 css 我在wamp服务器上
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
</IfModule>
【问题讨论】:
标签: php .htaccess wamp wampserver