403 on home page
-
I’ve seen a lot of posts about that topic, but none of them solved my problem.
What I have is 403 Forbidden error on my main page:
https://www.smgl.com.pl/stronawww/Other pages can be accessed without problems:
https://www.smgl.com.pl/stronawww/witaj-swiecie/It’s a clean wordpress install in a domain subfolder.
Permisions on folders is set to 755 and on files to 644.
.htaccess:
DirectoryIndex index.php
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /stronawww/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /stronawww/index.php [L]
</IfModule># END WordPress
Can someone help please?
- The topic ‘403 on home page’ is closed to new replies.