Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

When i try to access to my site ontwik.com i get

Forbidden

You don't have permission to access /index.php on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

Apache mod_qos/9.69 mod_fcgid/2.3.6 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at ontwik.com Port 80

However i still can access the site admin.

What can i do to solve this problem.

Thanks

Update:

.htaccess file

# BEGIN WPSuperCache
# END WPSuperCache

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Update

The hosting provider suspended the script "/home/ahmicro/public_html/index.php" as it was causing high loading issues on the server.

and the problem solved by the hosting provider.

Thanks guys for your help.

share|improve this question
try to change CHMOD of the file to 664 – Asko Jan 10 '12 at 22:08

closed as too localized by Rarst Jan 11 '12 at 9:38

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Check .htaccess file, maybe there's something wrong (DirectoryIndex) ?

share|improve this answer
What's wrong with .htaccess file. Updated question – Ahmed Ajmi Jan 10 '12 at 23:36

Not the answer you're looking for? Browse other questions tagged or ask your own question.