Link to home
Start Free TrialLog in
Avatar of drewsfoto
drewsfoto

asked on

Wordpress Permalinks, Not working for Pretty Links

I am trying to move a site to AWS EC2 and imported the content but can't get the permalinks to Post Name. I checked the phpinfo() and it is showing in the Loaded Modules that I have mod_rewrite, I checked the .htacccess and  I have

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
      RewriteRule ^index\.php$ - [L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]
</IfModule>

This is driving me crazy does anyone have any ideas
ASKER CERTIFIED SOLUTION
Avatar of drewsfoto
drewsfoto

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial