Welcome Guest, Not a member yet? Register   Sign In
how do you really remove index.php
#2

[eluser]tomcode[/eluser]
1. You might need to set the rewrite base
Code:
RewriteEngine on
RewriteBase /freelance/ps/
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

2. You might need to adapt the rewrite condition, in the CI example everything that is not named index.php, images or robots.txt is redirected to to the application, so if You have say a folder assets instead of images Your condition is

Code:
# ...
RewriteCond $1 !^(index\.php|assets|robots\.txt)
# ...


Messages In This Thread
how do you really remove index.php - by El Forum - 05-02-2010, 12:42 PM
how do you really remove index.php - by El Forum - 05-02-2010, 02:25 PM
how do you really remove index.php - by El Forum - 05-02-2010, 04:28 PM
how do you really remove index.php - by El Forum - 05-02-2010, 04:38 PM
how do you really remove index.php - by El Forum - 05-02-2010, 06:20 PM
how do you really remove index.php - by El Forum - 05-02-2010, 08:44 PM
how do you really remove index.php - by El Forum - 05-03-2010, 01:08 AM
how do you really remove index.php - by El Forum - 05-03-2010, 07:30 AM
how do you really remove index.php - by El Forum - 05-03-2010, 08:03 AM
how do you really remove index.php - by El Forum - 05-03-2010, 08:07 AM
how do you really remove index.php - by El Forum - 05-03-2010, 08:41 AM
how do you really remove index.php - by El Forum - 09-08-2010, 01:36 AM
how do you really remove index.php - by El Forum - 09-08-2010, 04:57 AM



Theme © iAndrew 2016 - Forum software by © MyBB