I have the following code in my htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !_assets/ajax
RewriteRule !^index\.php$ index.php [L]
I thought and hoped this would exclude the _assets
directory from being redirected to the root, but without success.
All directories are being redirected to the root, where I explode the URI to get the respective pages (in PHP). The htaccess file is actualy working as the right content is being displayed, according to the uri.
So to be briefly, my ajax calls do not work because of this.
How can can I make this work?
I'm using WAMP and created a virtual host named http://project.localhost
.