Hi all,
similar problem to a lot of other people only I really can't figure it out, tried no htaccess file, tried adding various hacks to it, none have worked so far.
The problem is getting 403 when not logged in and there is any redirect, for example:
http://site.id.au/wp-login.php?redirect_to=http%3A%2F%2Fsite.id.au%2F%3Fp%3D333
Forbidden
You don't have permission to access /wp-login.php on this server.
Currently my htaccess looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^redirect_to=http
RewriteRule ^wp-login.php http://site.id.au/wp-login.php? [R=301,L]
</IfModule>
DirectoryIndex index.php
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName site.id.au
AuthUserFile /home/ikik1170/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/ikik1170/public_html/_vti_pvt/service.grp
# BEGIN WordPress
# END WordPress
Every other link works, and the redirect works when I'm logged in, any ideas?