![]() |
Help with htaccess on MAMP - 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: Help with htaccess on MAMP (/showthread.php?tid=35868) |
Help with htaccess on MAMP - El Forum - 11-13-2010 [eluser]Miguel Diaz[/eluser] Hi I just move to mac and I already install the MAMP in my MAC and transfered all my local sites from my old pc, All is working perfectly the problem that I am havin is with the htaccess is not working I already change my htaccess to remove my index.php and still doesnt work, In my old pc I use to have appserv that works incredible in that one I just have to activate the mod rewrite and works perfect but in this one I dont have idea please can someone help me this is the htaccess that i am using in each of my folder sites. RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] Do the MAMP have a module or something where i have to activate the mod rewrite¨ or please any idea is a great help. Help with htaccess on MAMP - El Forum - 11-13-2010 [eluser]chrisilk[/eluser] did you check phpinfo for mod_rewrite? Help with htaccess on MAMP - El Forum - 11-13-2010 [eluser]guidorossi[/eluser] First, take a look at httpd.conf on /Applications/MAMP/conf/apache to see if the "LoadModule rewrite_module modules/mod_rewrite.so" line is uncommented (without the # at the beginning) If that`s ok, then I'm using this super documented .htaccess file on my MAMP by Daniel Moore http://ellislab.com/forums/viewthread/112024/ Code: Options -Indexes Help with htaccess on MAMP - El Forum - 11-13-2010 [eluser]Miguel Diaz[/eluser] thank you I already put it working i forgot to put in each of my htaccess before the index the name of the folder |