Hi there,
I am using the following method to “remove” index.php from my url:
RewriteEngine on
RewriteCond $1 !^(images|system|themes|favicon\.ico|robots\.txt|index\.php)
RewriteRule ^(.*)$ /index.php/$1This does allow me to access pages when I don’t include index.php in the address bar, but it doesn’t actually remove index.php. For example, I am using {path} in many of my links and this includes index.php. When clicking on these links, index.php is still visible in the URL?
Thanks in advance,
L.