substance78
Member
Posted 2 years ago #
1. The blog URL is: "blog.example.com/blogname"
2. When logged in as a user the "Older Posts" link correctly points to "http://blog.example.com/blogname/page/2/
3. When not logged in as a user the "Older Posts" link points in error to "http://blog.example.com/blogname/blogname/page/2/". Following this link will ofcourse result in error.
Any ideas?
What url is entered in Admin/Settings/General?
What custom permalink structure are you using?
substance78
Member
Posted 2 years ago #
Hi esmi,
Thanks for your reply! Here's my answers:
Q: What custom permalink structure are you using?
A: http://blog.example.com/blogname/2010/02/18/sample-post/ (Day and Name)
Q: What url is entered in Admin/Settings/General?
A: I can't find the field you're reffering to at http://blog.example.com/blogname/wp-admin/options-general.php. The only fields/options I have there are the following: Blogtitle, Slogan, E-mailaddress, Timezone, Dateformat, Week starts with, Blog language.
Hi,
Set your desired permalink from wordpress admin area and then add this code in htaccess of your site/blog:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Now, check with old and new posts.
Thanks,
Shane G.
Try looking for WordPress address (URL) and Blog address (URL)
substance78
Member
Posted 2 years ago #
I'm sorry to say that the above solutions didn't work out. :-(
Further suggestions is much appreciated, I'm kind of stuck on this one! :-(
substance78
Member
Posted 2 years ago #
Have tried upgrading to latest version of Atahualpa theme (3.4.4 -> 3.4.6) with same result.
Also tried a clean install of the theme but with same result.