/ Published in: Other
Place these lines at the top of your .htaccess file to skip to existing files and directories if they exist. If not, proccess our other rules as usual.
Expand |
Embed | Plain Text
RewriteCond %{REQUEST_FILENAME} -f [NC,OR] RewriteCond %{REQUEST_FILENAME} -d [NC] RewriteRule .* - [L]
Comments
Subscribe to comments
You need to login to post a comment.

Very useful snippet, it was exactly what I was looking for. Thanks a lot!