Welcome Guest, Not a member yet? Register   Sign In
suggestion for best htaccess
#10

[eluser]drewbee[/eluser]
Here is my htaccess. I also have the index.php removed and the subdirectories seem to work just well with this.

Do you have code igniter in a lower directory IE myapp?

Code:
Options +Indexes
Options +FollowSymLinks

# Set the default file for indexes
DirectoryIndex index.php


    RewriteEngine on

    # This will make the site only accessible without the "www."
    # (which will keep the subdomain-sensive config file happy)
    # If you want the site to be accessed WITH the "www."
    # comment-out the following two lines.
    # RewriteCond %{HTTP_HOST} ^www\.site\.com$ [NC]
    # RewriteRule ^(.*)$ http://site.com/$1 [L,R=301]
    
    # If a controler can't be found - then issue a 404 error from PHP
    # Error messages (via the "error" plugin)
    # ErrorDocument 403 /index.php/403/
    # ErrorDocument 404 /index.php/404/
    # ErrorDocument 500 /index.php/500/
    
    # You can also uncomment this if you know the IP:
    Deny from 192.168.1.1
    
    # If the file is NOT the index.php file
    RewriteCond %{REQUEST_FILENAME} !index.php
  
    # If the file/dir is NOT real go to index
    RewriteCond $1 !^(index\.php)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ myapp/index.php/$1 [QSA,L]


Messages In This Thread
suggestion for best htaccess - by El Forum - 10-30-2008, 08:38 AM
suggestion for best htaccess - by El Forum - 10-30-2008, 09:56 AM
suggestion for best htaccess - by El Forum - 10-30-2008, 10:17 AM
suggestion for best htaccess - by El Forum - 10-30-2008, 10:29 AM
suggestion for best htaccess - by El Forum - 10-30-2008, 10:34 AM
suggestion for best htaccess - by El Forum - 10-30-2008, 11:12 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 03:38 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 05:48 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 06:08 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 07:31 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 08:20 AM
suggestion for best htaccess - by El Forum - 10-31-2008, 01:26 PM
suggestion for best htaccess - by El Forum - 11-03-2008, 04:09 AM
suggestion for best htaccess - by El Forum - 11-03-2008, 08:15 AM
suggestion for best htaccess - by El Forum - 11-03-2008, 11:18 AM
suggestion for best htaccess - by El Forum - 11-03-2008, 12:32 PM
suggestion for best htaccess - by El Forum - 11-04-2008, 08:42 AM
suggestion for best htaccess - by El Forum - 12-09-2008, 05:24 PM
suggestion for best htaccess - by El Forum - 12-10-2008, 07:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB