I’m running EE2 on my Mediatemple gridserver (MySQL5.0.32). I’m attempting to add the rewrite code below to my .htaccess file and it doesn’t work. Does anyone know what I might be doing wrong? The “AddHandler…” bit was already added by the server when I switched from PHP 4 to 5. I need help from a guru.
AddHandler php5-script .php
RewriteEngine On
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]Moved to CodeShare Corner by Moderator