![]() |
codeigniter app in wordpress (subdomain) sub folder - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: codeigniter app in wordpress (subdomain) sub folder (/showthread.php?tid=69451) |
codeigniter app in wordpress (subdomain) sub folder - coolcurrent - 11-25-2017 I have a main site say www.abc.com, with htaccess for the main site I have another domain ww.efd.com hosted on the main site subfolder `/efd.com` (WordPress) it has this htaccess Code: <IfModule mod_rewrite.c> Now I have a CodeIgniter app www.efd.com/app hosted on subdirectory of the WordPress site /app, here is the htaccess Code: <IfModule mod_rewrite.c> here is the directory structure Code: /www when I try to access a subfolder in the app hosted under WordPress www.efd.com/app/login, I get a 404 error, but when I access www.efd.com/app the login screen of the `app` loads correctly. RE: codeigniter app in wordpress (subdomain) sub folder - jreklund - 11-25-2017 Try without the leading / on your index.php file. Code: <IfModule mod_rewrite.c> At the moment you are telling Apache to look at the root of the domain efd.com not efd.com/app RE: codeigniter app in wordpress (subdomain) sub folder - coolcurrent - 11-26-2017 It seems the worpress htaccess is interfering with the htaccess or codeigniter, is there anyway i can confirm this and make them play together? RE: codeigniter app in wordpress (subdomain) sub folder - PaulD - 11-26-2017 I have had trouble with this in the past. CI website with wordpress in sub folder is no problem. The other way round is very difficult and I did not find a reliable solution to it. In the end I just did an alternative approach. Sorry - no help at all, Paul RE: codeigniter app in wordpress (subdomain) sub folder - jreklund - 11-26-2017 EDIT: I just saw you got "RewriteEngine off" in your example. And even in my code I copied for you. That's why it ain't working. Mine works fine with this. I even got both of them in a subfolders. Code: # BEGIN WordPress Code: <IfModule mod_rewrite.c> Or if this works better for you: Code: <IfModule mod_rewrite.c> RE: codeigniter app in wordpress (subdomain) sub folder - PaulD - 11-26-2017 With wordpress in a subfolder there seems to be no problem. The problem I had in the past was when wordpress was in the root and CI in a sub folder. |