I have two applications in one Code Igniter project.
application
--PW1
--PW2
This is the directory structure. I changed the application_folder in index.php
$application_folder = 'application/PW2';
This works fine. I followed this example.
What I would like to do is access the second application from the first one. How can I do that. First I tried the simple solution:
<a href="<?php echo base_url(); ?>application/PW1">
But access is forbidden this way. How can I do this?
Take a look at the documentation . It states that
So according to the folder structure you have created, it should look something like this