Mod_rewrite not working |
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.
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!
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'] = '';
Practical guide to IgnitedCMS - Book coming soon, www.ignitedcms.com
Some servers need a ? after index.php
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
This always works for me, from FuelPHP.
PHP Code: <IfModule mod_rewrite.c> What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
|
Welcome Guest, Not a member yet? Register Sign In |