Hi guys,
I’m following this explanation about how to remove the index.php from the URL:
http://ellislab.com/expressionengine/user-guide/general/remove_index.php.html
My server is FeeeBSD running Apache2 so all should be fine
Got this in my .htaccess file
<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>
But if I try my url with no index.php I see the main index.php of my website (I have installed ee inside a folder in my root as follows:
root/it_ee/this is where EE is
What is the problem? Why isn’t tis working?
Thanks.