403 Forbidden

Status
Not open for further replies.

anothe10

New Member
Messages
2
Reaction score
0
Points
1
Can't access to my site today with 403 error.
Yesterday it be fine. No files were changed. All permissions 755 - folder, 644 - files.
 

lylex10h

Active Member
Messages
982
Reaction score
71
Points
28
I am unable to duplicate the issue you are reporting. I am able to access my website without a 403 error. If you are still having this error, please reply with steps to duplicate your issue.
 

anothe10

New Member
Messages
2
Reaction score
0
Points
1
I have site with .htaccess which redirect to subfolder "/web"

RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule !^web(/?|/.+)$ /web%{REQUEST_URI} [L]

And .htaccess in "/web" which redirects to index.php and set password protect.

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php/$1 [L,QSA]
AuthUserFile "/home/anothe10/.htpasswds/public_html/web/passwd"
AuthType Basic
AuthName "web"
require valid-user

I tried to remove password protection, totaly remove .htaccess files, copy index.php to root folder, but it didn't help.
 
Status
Not open for further replies.
Top