Codeigniter App works in one subdomain, but not in another. Why? Codeigniter App works in one subdomain, but not in another. Why? codeigniter codeigniter

Codeigniter App works in one subdomain, but not in another. Why?


I fixed my problem. I ended up going into our apache2.conf file on and changing this:

<Directory />    Options FollowSymLinks    AllowOverride None    Require all denied

<Directory /usr/share>    AllowOverride None    Require all granted</Directory><Directory /var/www/>    Options Indexes FollowSymLinks    AllowOverride None    Require all granted

To this:

AllowOverride All

On all directories.

Changing AllowOverride from None to All relaxes the access on the document root. If you're using linux, remember to restart Apache with sudo service apache2 restart.