![]() |
Mod_rewrite not working - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: Mod_rewrite not working (/showthread.php?tid=63281) |
Mod_rewrite not working - roy1523 - 10-15-2015 Hello, I just started with CodeIgniter, I did the tutorial and now I'm at the General topic - CodeIgniter URLs: https://codeigniter.com/user_guide/general/urls.html I modified the .htaccess file that comes with the CodeIgniter install, I added the following: Code: RewriteEngine On So now the complete .htaccess file is: Code: RewriteEngine On I'm using MAMP as webserver, it runs on localhost:8888 Here is a link to my httpd.conf file: http://pastebin.com/Am0ew0C0 the codeigniter folder is located at: /Users/Roy/Websites/CodeIgniter-3.0.2 Please tell me if I'm posting this on the wrong forum, I'm hoping someone knows why this isn't working because I'm pretty lost. RE: Mod_rewrite not working - macruzgi - 10-15-2015 Greetings, just have that problem with PCI 3.0.1, I configured the htacces file is as follows: #Rewrite /jicaro es el nombre de la carpeta del proyecto RewriteEngine On RewriteBase /jicaro RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] I do not work, and please thank your help, I looking in the manual but still can not find the solution. First of all, Thanks! RE: Mod_rewrite not working - ignitedcms - 10-15-2015 I'm on mamp and this works for me Try using the following .htaccess file RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] Then in the config.php make sure you remove index.php $config['index_page'] = ''; RE: Mod_rewrite not working - CroNiX - 10-16-2015 Some servers need a ? after index.php RewriteRule ^(.*)$ index.php?/$1 [L,QSA] RE: Mod_rewrite not working - InsiteFX - 10-19-2015 This always works for me, from FuelPHP. PHP Code: <IfModule mod_rewrite.c> |