1
鑑於輸入http://example.com/foo.html
如何檢查http://example.com/subdir/foo.html
是否存在,使用mod_rewrite
在.htaccess
?這感覺就像如何使用RewriteCond測試子目錄文件是否存在?
Options +FollowSymlinks
RewriteEngine on
RewriteBase/
RewriteCond subdir%{REQUEST_URI} -f
應該工作,但REQUEST_URI
相比,當內RewriteRule
用於內RewriteCond
使用時出現意外的行爲(對我來說)。