2015-05-08 46 views

回答

3

這將完全正常工作適合你

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule (.*) /path/to/file [L] 

的的RewriteCond確保靜態文件不被改寫(即robots.txt的,爲favicon.ico,IMG/potato.jpg)

0

您可以使用總是相匹配的重寫規則:

RewriteRule^/path/to/the/file [L] 

您可能要添加的RewriteCond爲好。例如:

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule^/app.php [L] 

的的RewriteCond確保映射到一個實際的靜態文件的Web根網址沒有得到改寫(即robots.txt的,爲favicon.ico,IMG/potato.jpg)