2013-03-23 90 views
0

我有效果永久的.htaccess加載CSS文件

本地主機/ CTR /的index.php?頁=重裝

和我使用htaccess的,將它們轉換成

本地主機/ CTR /索引/重載

htaccess的是

RewriteEngine on 

RewriteRule index/([a-z]+) index.php?page=$1 [NC] 

這項工作,帶有新格式網址的頁面出現。

,但有如下加載CSS文件的一個問題:

link href="templates/plugin/bootstrap/css/bootstrap.css" type="text/css" rel="stylesheet" 

我認爲CSS文件負載的影響,我在htaccess的安排。

我怎麼能解決這個問題。

回答

0

您需要更改的鏈接,使其絕對:

link href="/templates/plugin/bootstrap/css/bootstrap.css" type="text/css" rel="stylesheet" 

,或者您需要在頁頭添加適當的URI基地:

<base href="/">