hi,
i know this topic has been discussed several times, but still…
according to google and this website, you should be able to easily remove index.php and the following template name via .htaccess.
however, this does not seem to work for me.
now, i think that is because of me having a rewrite rule already.
sadly, i do not understand these rules good enough to merge them.
could somebody please help me with that?
my current .htaccess looks as follows:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.foo\.com$
RewriteRule (.*) <a href="http://foo.com/$1">http://foo.com/$1</a> [R=Permanent]
AddHandler php4-script .phpand this is the solution i found for removing the index.php ( via ):
RewriteEngine on
RewriteCond $1 !^global/.*
RewriteCond $1 !^images/.*
RewriteCond $1 !^archive/.*
RewriteCond $1 !^expressionengine/.*
RewriteCond $1 !^index\.php.*
RewriteRule ^(.*) index.php/$1 [NC,L]thanks in advance…