Welcome Guest, Not a member yet? Register   Sign In
remove Index.php Not working in localhost
#8

[eluser]charlie spider[/eluser]
hee hee... ya try tomcode's idea first.

nothing worse then trying to troubleshoot something when it simply isn't turned on.

if it is running, then here's a couple of other htaccess options for ya:

option 1
Code:
Options -Indexes
Options +FollowSymLinks
Options -MultiViews
DirectoryIndex index.php

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /itech/projectmanagement/

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d

  #Uncomment one of the following rewrite rules.
  #Some servers require the ? after index.php, some don't

  #RewriteRule ^(.*)$ index.php?/$1 [NC,L,QSA]
  #RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA]

</IfModule>

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


option 2
Code:
Options -Indexes
Options +FollowSymLinks
Options -MultiViews
DirectoryIndex index.php

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d

  #Uncomment one of the following rewrite rules.
  #Some servers require the ? after index.php, some don't

  #RewriteRule ^(.*)$ itech/projectmanagement/index.php?/$1 [NC,L,QSA]
  #RewriteRule ^(.*)$ itech/projectmanagement/index.php/$1 [NC,L,QSA]

</IfModule>

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

the above are snippets from Daniel Moore's Ultimate htaccess file. Search for it if you want some other cool htaccess tricks


Messages In This Thread
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 12:38 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 12:59 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 01:08 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 01:28 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 01:47 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 01:49 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 06:16 AM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 09:13 PM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 10:10 PM
remove Index.php Not working in localhost - by El Forum - 01-28-2010, 10:18 PM
remove Index.php Not working in localhost - by El Forum - 01-29-2010, 01:28 AM
remove Index.php Not working in localhost - by El Forum - 01-26-2012, 11:22 PM
remove Index.php Not working in localhost - by El Forum - 01-26-2012, 11:28 PM



Theme © iAndrew 2016 - Forum software by © MyBB