[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