![]() |
Problem with .htaccess on ubuntu (apache2) - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Problem with .htaccess on ubuntu (apache2) (/showthread.php?tid=49004) |
Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]xxIdroxx[/eluser] hello community! Today I tried to put my site made with CodeIgniter in Ubuntu but when I go to localhost / mysite / I see a blank page. My files. Htaccess I have enabled mod_rewrite Code: DirectoryIndex index.php Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]vbsaltydog[/eluser] [quote author="xxIdroxx" date="1328462582"] Code: DirectoryIndex index.php Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]xxIdroxx[/eluser] wrong. I always see the blank page Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]vbsaltydog[/eluser] wrong? .... good luck. Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]xxIdroxx[/eluser] yes in my host online it work but in local not Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]xxIdroxx[/eluser] Help me please Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]CroNiX[/eluser] Sounds like you need to check your httpd.conf file on the server and make sure your local httpd.conf uses the same options! This is a webserver configuration issue that really has nothing to do with codeigniter. Problem with .htaccess on ubuntu (apache2) - El Forum - 02-05-2012 [eluser]vitoco[/eluser] this works on my xubuntu Code: Options +FollowSymLinks Also check the config file for apache , in my case : /etc/apache2/sites-enabled/000-default this works for me Code: DocumentRoot /path/to/www/ Finally ( or maybe before all ) check that mod_rewrite is enabled Code: sudo a2enmod rewrite this page have all the steps ( spanish ) Code: http://imbuzu.wordpress.com/2011/05/31/activando-mod_rewrite-en-apache-ubuntu-11-4/ Saludos Problem with .htaccess on ubuntu (apache2) - El Forum - 02-06-2012 [eluser]xxIdroxx[/eluser] not work. This is my 000-default Code: <VirtualHost *:80> |