Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am not able to get codeigniter to work on my shared ssl url. for example, on https://nimrod.eukhosting.net/~nadavwei/myatar.co.cc/aaa i get a 404 error aaa is just a demo controller that should echo test

only the homepage - with no controller in the url - works https://nimrod.eukhosting.net/~nadavwei/myatar.co.cc/

btw, i am using .htaccess

thanks

share|improve this question
1  
In CI, a tilde ~ is not a valid character in URLs – Kumar Jul 31 '11 at 17:19
it is a valid charcter see codeigniter.com/user_guide/general/security.html (2.02) – user775231 Jul 31 '11 at 18:43
My bad, really sorry, I just realised one of my CI project is using ~ in URLs. – Kumar Aug 1 '11 at 4:37

1 Answer

It looks like your provider is disabling .htaccess for the https server.

I am able to see your website here: https://nimrod.eukhosting.net/~nadavwei/myatar.co.cc/index.php/categories/26

But it won't work here: https://nimrod.eukhosting.net/~nadavwei/myatar.co.cc/categories/26

My guess is that their setup allows or disallows .htaccess based on the virtual domain, and since you are not using your virtual domain, it is being disabled. You should contact your hosting provider and see if they know or can provide more information.

You can also double check your .htaccess file, in case there is something about it specifying the virtual domain.

Also, as an FYI, you are going to have to modify your CodeIgniter configuration so that it dynamically the full path and turns on or off the index.php part of your URL based on whether or not the user is arriving via HTTPS:

$is_https = !empty($_SERVER['HTTPS']);
$config['base_url'] = $is_https ?
        'https://nimrod.eukhosting.net/~nadavwei/myatar.co.cc/' :
        'http://myatar.co.cc/';

$config['index_page'] = $is_https ? 'index.php' : '';

This should toggle the modes as necessary.

share|improve this answer
nimrod.eukhosting.net/~nadavwei/myatar.co.cc/index.php/… actually shows the homepage I think this is because .htaccess: #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends #the request to index.php – user775231 Jul 31 '11 at 18:32

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.