Welcome Guest, Not a member yet? Register   Sign In
index.php .htaccess trick won't work
#2

[eluser]Aken[/eluser]
Wrong .htaccess file. Leave the one in the application folder as-is, and create a new one in your root directory (wherever index.php is).

Also, that's a crap .htaccess (CI needs to update their user guide). Use something like this instead:
Code:
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
  ErrorDocument 404 index.php
</IfModule>


Messages In This Thread
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 02:00 PM
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 03:07 PM
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 06:21 PM
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 11:06 PM
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 11:25 PM
index.php .htaccess trick won't work - by El Forum - 02-08-2012, 11:56 PM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 01:25 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 01:43 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 01:50 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 01:53 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:09 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:33 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:34 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:37 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:45 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:45 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 02:50 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 10:45 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 11:29 AM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 03:44 PM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 04:18 PM
index.php .htaccess trick won't work - by El Forum - 02-09-2012, 04:34 PM
index.php .htaccess trick won't work - by El Forum - 02-10-2012, 09:00 AM
index.php .htaccess trick won't work - by El Forum - 02-10-2012, 11:06 AM
index.php .htaccess trick won't work - by El Forum - 02-10-2012, 04:19 PM
index.php .htaccess trick won't work - by El Forum - 02-10-2012, 07:09 PM
index.php .htaccess trick won't work - by El Forum - 02-11-2012, 04:15 AM
index.php .htaccess trick won't work - by El Forum - 02-11-2012, 05:09 AM
index.php .htaccess trick won't work - by El Forum - 02-12-2012, 12:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB