使用.htaccess图片重定向网址并且css未加载

时间:2016-06-07 09:18:54

标签: php jquery css .htaccess

我在页面上加载CSS,JS和图像等方面存在问题。我的代码是这样的:

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
# Prevent loops
RewriteCond %{REQUEST_URI} !index\.php [NC]
RewriteCond %{REQUEST_URI} !\.(?:css|js|jpe?g|gif|png)$ [NC]
RewriteCond %{REQUEST_URI} ^/([^/]+)/([^/]+)/? [NC]
RewriteRule .*  %1/index.php?cat_id=%2&subcat_id=%2&product_id=%2 [L]

当我访问下面的网址时,CSS等加载正常:

  

http:// localhost / test /
  http:// localhost / test / category /

访问此URL后,CSS,JS和图像无效。

  

http:// localhost / test / category / subcategory / productname

0 个答案:

没有答案