Hello EE,
I’ve a problem with removing the index.php via .htaccess. I already searched trough the forums and tried every answer there was given, but none were succesfull.
So i hope someone could help me out here.
I am trying to change this url: http://subdomain.domain.com/ee/index.php/about/ into http://subdomain.domain.com/ee/about/
Changing the $config[‘uri_protocol’] didnt help also.
EE version: 2.4
mod_rewrite: on
Name of your site’s index page: this is blank.
host: our host supports everything and isn’t GoDaddy.
htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
# If 404s, "No Input File" or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)
</IfModule>Can somebody please help?!