Welcome Guest, Not a member yet? Register   Sign In
.htaccess for multiple applications?
#2

[eluser]ChrisMiller[/eluser]
You can try this Rein and see if this works for you, I am a little rusty with my .htaccess but it should work as its code taken from a production website of mine.

Code:
RewriteEngine On
Options Indexes FollowSymlinks Multiviews
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

Basically it checks to see if a file or folder actually exists such as admin.php which if it does then it handles the request and if it doesn't then it bumps it to CI.

- OR -

Code:
RewriteEngine On
Options Indexes FollowSymlinks Multiviews
RewriteBase /

RewriteCond %{REQUEST_URI} !admin/
RewriteRule ^(.*)$ /admin.php/$1 [L]

RewriteCond $1 !^(index\.php|admin\.php|admin|_images|_css|_js|_uploads|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
Your .htaccess fixed to a degree with some modifications I am not positive if this will work It looks correct in theory; let me know and I will gladly help sort it out. I have been at the other end many of times completely lost especially with htaccess as I mainly work with php/mysql

- Enjoy


Messages In This Thread
.htaccess for multiple applications? - by El Forum - 02-11-2011, 09:31 AM
.htaccess for multiple applications? - by El Forum - 02-11-2011, 02:38 PM
.htaccess for multiple applications? - by El Forum - 02-13-2011, 09:19 AM
.htaccess for multiple applications? - by El Forum - 02-14-2011, 01:14 PM
.htaccess for multiple applications? - by El Forum - 02-15-2011, 03:16 AM
.htaccess for multiple applications? - by El Forum - 02-17-2011, 01:45 AM
.htaccess for multiple applications? - by El Forum - 02-17-2011, 02:04 AM
.htaccess for multiple applications? - by El Forum - 02-17-2011, 07:55 AM
.htaccess for multiple applications? - by El Forum - 02-28-2011, 09:25 AM
.htaccess for multiple applications? - by El Forum - 02-28-2011, 09:51 AM
.htaccess for multiple applications? - by El Forum - 02-28-2011, 06:37 PM
.htaccess for multiple applications? - by El Forum - 03-03-2011, 03:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB