我有效地使用重写规则将我的网址从 /teams.php?team=New York Yankees&year=2012 更改为 teams/New York Yankees/2012。
我的 .htaccess 文件包含以下内容
RewriteEngine On
RewriteRule ^teams/([^/]*)/(^/]*)$ /teams.php?team=$1&year=$2 [L]
但是,由于此重写规则当前生效,将不会加载任何外部 CSS 和 JS 文件。我尝试将以下重写条件放在重写规则之前,但没有成功
RewriteCond %{REQUEST_URI} !^/(css/js)/
几乎我所有的文件都有以下指向外部样式表的链接。
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" />
有什么想法我在这里做错了吗?
谢谢