我正在定義mod_rewrite規則,如果請求的文件不存在,它將重寫所有對我/application.php的請求,否則不會進行任何重寫。這很簡單:現有文件的mod_rewrite規則
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule .* application.php [PT]
只有一個與代碼的問題。假設我有foo.html文件。然後要求,如:
http://example.com/foo.html/some/other/string
會愛上404錯誤。 爲什麼?