Welcome Guest, Not a member yet? Register   Sign In
Merging a CI app with EE2
#10

[eluser]Nathan Pitman (Nine Four)[/eluser]
Ok, I managed to get it working! Here's what I did:

1) Placed the CI app front end loader (index.php) in a sub folder (/app).
2) reverted back to having the EE front loader as index.php in the site root.
3) Modified my .htaccess file to read as follows:

Code:
<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]

# Rewrite requests for anything that's NOT a CI controller or physical file/folder to ExpressionEngine
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !(admin|cron|fst_reporting|playcatch|ppv|purchase|reporting|training|xml) [NC]
RewriteRule ^(.*)$ /index.php/$1 [L]

# Route everything else to CodeIgniter
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /app/index.php/$1 [L]

# Rejoice!

</IfModule>

<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php
</IfModule>

Now I can specify controller names that need to be routed to CI and everything else get's routed to EE2! Smile

Hoorah!


Messages In This Thread
Merging a CI app with EE2 - by El Forum - 05-06-2011, 05:18 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 05:54 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 07:14 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 07:29 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 07:31 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 08:03 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 08:13 AM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 04:32 PM
Merging a CI app with EE2 - by El Forum - 05-06-2011, 08:34 PM
Merging a CI app with EE2 - by El Forum - 05-09-2011, 03:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB