我有這個網址:爲什麼我在.htaccess中使用mod_rewrite我的css文件無法使用?
http://domain.com/index.php?type=item&id=656&title=mytitle
漢口我想在.htaccess重寫URL以便:
http://domain.com/item/656/mytitle
我用這個ruls在.htaccess:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/([^/]*)$ /index.php?type=$1&id=$2&title=$3 [L]
它的工作但我的和js
檔案index.php
不能正常工作
我的CSS文件鏈接
<link rel="stylesheet" type="text/css" href="file/css/style.css" />
您是否嘗試過使用JS/CSS絕對文件路徑?編輯:糾正我,如果我錯了,但不應該有一個'/'或在該文件路徑前的'../'? – 2014-09-21 18:40:03