This question may be related to a resolved thread.
I am trying to migrate an EE site from one server to another and I am am having a problem getting any other page other than the index page to show up correctly. I suspect this is a htaccess issue, but I have had no luck resolving it. I am new to EE and don’t if I am going about trying to resolve this correctly. I have included the current code from my htaccess file and two example links below. Thanks for any assistance.
Working link:
http://hbmdata2.com/ugiperf/ee/?/contact
Broken link:
http://hbmdata2.com/ugiperf/ee/contact
Code in my htaccess file:
<IfModule mod_security.c>
SecFilterEngine Off
</IfModule>
<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>