Hi, and thanks you for your suggestion. I did check what you said and yes both sites URL http://extremebizadvertising.com/Likes/ and home
http://extremebizadvertising.com/Likes/ are both pointing to the right location. After further investigation, it appears that all the pages work with default permalinks set, but when I set it to page name it creates a .htaccess that looks like this
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Like/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
But when I view it in file manages the /Likes/ is stripped in RewriteBase.
# 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>
If I manually change it and add the /Likes/ it changes back after saving it.
Any other suggestions with this new information?
Thanks
Garry