如何在.htaccess中将任何php文件请求重写到主页面

时间:2013-11-06 19:38:49

标签: .htaccess path rewrite

我想知道如何重写这样的路径www.domain.com/pages/article/ 到www.domain.com

我做到了,但CSS文件也改变了路径

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} ^index.php$
RewriteRule . http://www.domain.com/ [L]

1 个答案:

答案 0 :(得分:0)

为处于不同重写条件的人添加排除项。

RewriteEngine On
RewriteCond %{REQUEST_URI} !\.(css|js|png|jpe?g|gif)$ [NC]
RewriteCond %{REQUEST_FILENAME} ^index.php$
RewriteRule . http://www.domain.com/ [L]