simple question, I don't find a working answer.
I have multiple sites like this:
www.example.com/#ajax/shipping.php
www.example.com/#ajax/pricing.php
www.example.com/#ajax/inventory.php
And want to only show www.example.com. I just can't find how I put this in .htaccess the best way. Can somebody assist please?
This is what I have in .htaccess right now:
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php/?url=$1 [QSA,L]