![]() |
how do I run ci4 app inside a subfolder of wordpress - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: how do I run ci4 app inside a subfolder of wordpress (/showthread.php?tid=86902) |
how do I run ci4 app inside a subfolder of wordpress - SubrataJ - 02-24-2023 Lately, I have been trying to run a ci4 project inside a subfolder of the WordPress project, but so far no luck might be because I don't have a vast knowledge of htacess files. htacess of WordPress projects Code: # HTTPS forced by SG-Optimizer Code: RewriteEngine on I would really appreciate any help I get from you guys. Thanks in advance, happy coding ![]() RE: how do I run ci4 app inside a subfolder of wordpress - luckmoshy - 02-25-2023 use this Code: RewriteEngine On RE: how do I run ci4 app inside a subfolder of wordpress - SubrataJ - 02-25-2023 (02-25-2023, 12:47 AM)luckmoshy Wrote: use this is it for CI or WordPress? RE: how do I run ci4 app inside a subfolder of wordpress - luckmoshy - 02-25-2023 (02-25-2023, 01:00 AM)SubrataJ Wrote:(02-25-2023, 12:47 AM)luckmoshy Wrote: use this This is for the folder where you want to point so this .htaccess help you find your folder where you want to..eg wordpress/folder/ because I don't know how you figure out your app basically you put in a root in WordPress to point your subfolder so wrdpress/folder/ these are two directors it is you to decide either WordPress or plus folder =wordpress/folder/ change as you wish so just modify to use from WordPress to yours folder for example here you can hide a public folder in CI4 by using this in a CI root Code: RewriteEngine On [/quote] |