Hi there,
I've found a few topics about this but my knowledge is a bit slim.
I have wordpress installed in a sub dir called blog on my site.
All is working great but when I selects any link on the page it gives me 'access denied'. I know it has something to do with permissions but have been at it all day and haven't been able to figure it out.
Current permissions on the complete blog directory is 755.
There is nothing in the .htaccess file in my root directory.
This is the code in the .htaccess file in the blog directory.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
Not sure if I'm allowed to put the link to my website for anyone to have a look at what's happening.
Be great if someone can educate me a bit.
Thanks
Hank