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.
我将网站的设计更改为单页设计。现在我希望对以前页面的所有请求都重定向到主页(domain.com)。
我试过这个:
RewriteRule ^.+$ / [R=302,NC,L]
但如果我使用它,我的 CSS 文件将无法加载!
有小费吗?
添加例外作为该规则的条件:
RewriteCond %{REQUEST_URI} !\.(png|jpe?g|gif|js|css)$ [NC] RewriteRule ^.+$ / [R=302,NC,L]
这样它就不会将图像/css/脚本重定向到主页。