Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I made a backoffice module using codeigniter for one of our websites and I've put it into a folder called backoffice. The website itself does not use any framework, its just a couple of static websites, some of them reading some data from database. It does not have any .htaccess file or any routing.

When I try to access the backoffice it does not work. The error log says it is trying to get my default controller from outside of the subfoler:

File does not exist: /usr/local/apache/htdocs/home, referer: http://64.91.226.165/~captainj/backoffice/

What can I do, did you meet this kind of problem so far? Thanks

AS YOU CAN SEE I AM ACCESSING THE DOMAIN THROUGH IP ADDRESS AS THE DNS IS NOT SET YET

UPDATE:

I just found out that this is happening only when I try to access the module through IP address. I have copied it on another server and accessed by domain name and it works. But I still need to get this work using IP address.

share|improve this question
Did you try to access the file directly via browser? – sk8terboi87 Jan 4 at 8:45
yes I've tried and the same is happening. – Ervin Jan 4 at 8:53
so you're saying backoffice itself not working when accessing directly? Post the code and complete location of the files – sk8terboi87 Jan 4 at 9:04
what code you want me to post? – Ervin Jan 4 at 9:09
1  
Have you set $config['base_url'] = 'http://64.91.226.165/~captainj/backoffice/'; in your config file? – jtheman Jan 4 at 9:46
show 1 more comment

1 Answer

try removing the url bad part with htaccess removing also index.php:

RewriteEngine On
RewriteBase /~captainj/backoffice/index.php/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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