Welcome Guest, Not a member yet? Register   Sign In
Codeigniter install on subdirectory (htaccess question)
#2

[eluser]Ayeyermaw[/eluser]
for reference my htaccess file at the top level is as follows:

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    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
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 09:11 AM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 09:13 AM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 09:51 AM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 10:03 AM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 10:14 AM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 01:21 PM
Codeigniter install on subdirectory (htaccess question) - by El Forum - 06-05-2012, 01:28 PM



Theme © iAndrew 2016 - Forum software by © MyBB