My site is hosted on Godaddy.
I have removed the index.php from my url but I am still left with this:
kldkids.org/?/about/generationAtRisk/
I would like a clean url to look like this:
kldkids.org/about/generationAtRisk/
I have to have “Forced Query Strings” set to “yes” this is what is creating the “?”
Here is my .htaccess file:
<IfModule mod_rewrite.c>
# Enable Rewrite Engine
#———————————————
RewriteEngine On
RewriteBase /
# Redirect index.php Requests
#———————————————
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
# Standard ExpressionEngine Rewrite
#———————————————
RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>
Any ideas?
Thank you so much! G