Welcome Guest, Not a member yet? Register   Sign In
403 - Forbidden: Access is denied live server
#1

Hi guys, i made a small website and everythign works fine in localhost, but now im moving to live server(windows not linux) and im getting the 403 error. Any help? 
Server Error
403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.

my htaccess:

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading
# slashes.
# If your page resides at
# http://www.example.com/mypage/test1
# then use
# RewriteBase /mypage/test1/
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
My config file:
Code:
$config['base_url'] = 'http://meusite.pt/';
$config['index_page'] = '';
Reply
#2

check your permissions on that folder with chnod.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

Also you can check your apache logs for this error.  And try this

Code:
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1
Reply




Theme © iAndrew 2016 - Forum software by © MyBB