I want to remove index.php completely from my URLs. I want my URLs to be something like http://www.domain.com/template-group/template/
The “Name of your site’s index page” is blank under general configuration in the Admin CP.
This is my .htaccess generated using this template yanked off the wiki.
RewriteEngine On
RewriteCond $1 ^(member|index|about-us|party-boats|contact-us|faqs|styles|js|template-base|P[0-9]{2,8}) [NC]
RewriteRule ^(.*)$ /index.php/$1 [L]When I go to “Templates” and check out the “styles” template group. I click on the view link. It points me to http://dev.beachfrontboats.com/index.php?styles/global.css/ - http://dev.beachfrontboats.com/?styles/global.css/ also works. But http://dev.beachfrontboats.com/styles/global.css does not.
Could Apache be ignoring my .htaccess file? I don’t have access to the logs to check.
Any ideas? Thanks.