![]() |
DreamHost and CodeIgniter htaccess problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: DreamHost and CodeIgniter htaccess problem (/showthread.php?tid=56124) |
DreamHost and CodeIgniter htaccess problem - El Forum - 11-27-2012 [eluser]Unknown[/eluser] I have a CodeIgniter application which is successfully deployed on localhost and justhost without any errors. Now, I need to migrate to DreamHost and place it in the subdirectory: http://mywebsite.com/code_igniter_root/ Now the applications give me the "No input file specified" error with this old htaccess file : Code: RewriteEngine on When I change to this by adding the question mark after the RewriteRule index.php, it works: Code: RewriteEngine on However, there is a problem that I cannot receive the post data anymore via $_POST and $this->input->post(); What is the solution for this problem? DreamHost is really annoying... DreamHost and CodeIgniter htaccess problem - El Forum - 11-28-2012 [eluser]jprateragg[/eluser] I'm on DreamHost and my site works fine. Here's my .htaccess: Code: RewriteEngine On Are you on a shared server or VPS? I'm on a VPS. |