我有以下問題:的.htaccess折磨URL,但不是本地數據,而不RewriteEngine敘述
如果我在example.com/foo/bar
頁面打開我的網站的每個樣式表加載這樣的: 來源:
<link href="css/style.css" rel="stylesheet" type="text/css">
但我的服務器負載文件,如:foo/css/style.css
現在我想改變我的.htaccess
RewriteEngine
,這並不HAPP 然而我不要想要使用RewriteRule
,它可以防止/css/
更改URL
!
我.htaccess
:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?urlparam=$1 [NC,L]
在此先感謝;)
謝謝,這真是有幫助 –