Fortunately, there is a solution: a better rewrite rule. The one
presented below has been circulating around in a variety of places, and
was in fact the reason I never saw the reported issues myself. Instead
of relying on the file extension to determine whether or not to rewrite,
it relies on file presence:

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^.*$ index.php [NC,L]

Thanks for the update. I was thinking there was some issue with all the dojo builds I tried so far.

--

With warm regards,
Sudheer. S
http://binaryvibes.co.in


Reply via email to