.htaccess and rewrite on mac |
[eluser]brett_mekanik[/eluser]
Got it! I found the information I needed on these 2 pages: http://ellislab.com/forums/viewthread/79825/#401151 http://www.danielwmoore.com/articles/rem...deigniter/ The following htaccess file will rewrite all urls except those beginning with the exceptions in the first RewriteCond line: # ================= # DirectoryIndex index.php <IfModule mod_rewrite.c> RewriteEngine on RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] </IfModule> <IfModule !mod_rewrite.c> ErrorDocument 404 index.php </IfModule> # ================= # In case my setup differs from yours, I'm using MAMP with the htdocs folder set up like this so there's a single installation of CodeIgniter. <folder name="htdocs"> <folder name="ci"> <folder name="CodeIgniter_1.7.2"> </folder> <folder name="app_1_application"> </folder> <folder name="app_1_webroot"> .htaccess index.php </folder> <folder name="app_2_application"> </folder> <folder name="app_2_webroot"> </folder> <folder name="app_3_application"> </folder> <folder name="app_3_webroot"> </folder> </folder> <folder name="non_ci_site_1"> </folder> <folder name="non_ci_site_2"> </folder> </folder> I hope this helps you. |
Messages In This Thread |
.htaccess and rewrite on mac - by El Forum - 02-10-2010, 03:03 AM
.htaccess and rewrite on mac - by El Forum - 02-10-2010, 08:43 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:00 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:03 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:14 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:27 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:36 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 07:46 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 08:08 AM
.htaccess and rewrite on mac - by El Forum - 02-11-2010, 08:16 AM
.htaccess and rewrite on mac - by El Forum - 02-12-2010, 05:07 AM
.htaccess and rewrite on mac - by El Forum - 02-13-2010, 01:24 PM
.htaccess and rewrite on mac - by El Forum - 05-11-2010, 07:53 AM
.htaccess and rewrite on mac - by El Forum - 05-11-2010, 08:02 AM
.htaccess and rewrite on mac - by El Forum - 05-11-2010, 03:55 PM
|