如何改寫爲圖像和其它靜態文件到指定的文件夾,即網址我使用這個至今:htaccess的 - 重寫規則對靜態文件
RewriteRule \.(woff|ttf|svg|js|ico|gif|jpg|png|css|htc|xml|txt)$ /MyFolder/$1
,但它不工作,
請幫助。
-------------------更新---------------------
ok所以現在我有:
RewriteCond %{HTTP_HOST} ^(www.)?exmpale.com$
RewriteCond %{REQUEST_URI} !^/exmpale.com/
RewriteRule ^(.*\.(woff|ttf|svg|js|ico|gif|jpg|png|css|htc|xml|txt))$ /exmpale.com/$1
RewriteCond %{HTTP_HOST} ^(www.)?exmpale.com$
RewriteRule !\.(woff|ttf|svg|js|ico|gif|jpg|png|css|htc|xml|txt)$ /exmpale.com/index.php
所以重定向到exmpale文件夾圖片的工作,但現在我想重寫其他一切的index.php,上述解決方案至今沒有工作。
歡呼聲, /馬辛
差不多在那裏,請看看我的問題更新 – Marcin 2010-12-20 19:46:21
+1簡明,單一的捕獲。 – 2010-12-20 19:47:08
你能看看我的更新和建議請 – Marcin 2010-12-20 19:51:20