Hey guys,
I'm working on my first wordpress site. I got everything working perfectly locally on a windows 7 machine with XAMPP, but I've now uploaded to a free host to allow admins to populate content, and I'm running into trouble with the permalinks. The site is at sfer.comze.com
Specifically, my pages instead of displaying as /about/who-we-are are displaying as /?page_id=1044. What I understand I'm supposed to do is to go change the permalink settings at Dashboard > Settings > Permalinks. However, I already have Day and Name selected, the same as locally. Additionally, if I go to edit the page, instead of having an edit button where I can edit the permalink, it just has a button for "Change Permalinks" that brings me back to the Permalink settings page.
My guess is that something needs to be changed in my .htaccess file. Currently it only reads:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
which was written to it by wordpress (permissions are 666). I've of course looked through the documentation but it seems I'm missing something fairly obvious because I haven't found other people unable to get their page permalinks to go pretty.
Thanks for your time!
Neal