How to access directory .htaccess issue

Discussion in 'Apache' started by ranacseruet, Dec 14, 2009.

  1. #1
    Hi, I am using an .htaccess file as follows:

    Options -indexes 
    DirectoryIndex index.php 
    RewriteEngine On 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond $1 !^(index.php|images|javascript|style|robots.txt|user_guide) 
    RewriteRule ^(.*)$ /dof/index.php?/$1/ [L]
    
    Code (markup):
    I don't know much in .htaccess. I am facing problem to access a directory named 'user_guide'. What modification I should do to get the access of that directory?

    Regards
     
    ranacseruet, Dec 14, 2009 IP
  2. Bohra

    Bohra Prominent Member

    Messages:
    12,573
    Likes Received:
    537
    Best Answers:
    0
    Trophy Points:
    310
    #2
    Try

    RewriteCond $1 !^(index.php|images|javascript|style|robots.txt)
     
    Bohra, Dec 15, 2009 IP