php_flag display_errors 1
php_value auto_prepend_file init.php
RewriteEngine on
RewriteRule ^$ /id/authenticate [R]
RewriteRule ^login_openid$ /id/login_openid.php [QSA,L]
RewriteRule ^authenticate$ /id/authenticate.php [QSA,L]
RewriteRule ^facebook$ /id/facebook.php [QSA,L]
RewriteRule ^createfromopenid$ /id/createfromopenid.php [QSA,L]
RewriteRule .* - [L,R=403]
This is my .htaccess file. In the serverconfig I just have AllowOVerride all
.
If I request the URL http://mydomain.com/id/authenticate
I get a 403 Error. If I remove the last rule, it works. Shouldnt the [L]
flat prevent any further rules from happening?
Edit:
My htaccess file is in the subfolder "id", so the rules work.