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.domain.com/pages/article/ 路径重写为 www.domain.com
我做到了,但 CSS 文件也改变了路径
RewriteEngine On RewriteCond %{REQUEST_FILENAME} ^index.php$ RewriteRule . http://www.domain.com/ [L]
在单独的重写条件中添加排除项。
RewriteEngine On RewriteCond %{REQUEST_URI} !\.(css|js|png|jpe?g|gif)$ [NC] RewriteCond %{REQUEST_FILENAME} ^index.php$ RewriteRule . http://www.domain.com/ [L]