Codeigniter3 EC2 remove index.php |
I'd suggest using `base_url` only on the home link. unless you've added it to your base_url in config.php you might not have a trailing slash the way you have it written. (You should have a trailing slash, but not everyone does it.)
Try site_url() and have the link URI inside the () thusly: PHP Code: <li><a href="<?php echo base_url(); ?>pricing">Pricing</a></li> // old Lastly, are you *sure* rewrite is enabled? |
Messages In This Thread |
Codeigniter3 EC2 remove index.php - by majortom84 - 11-06-2017, 01:28 PM
RE: Codeigniter3 EC2 remove index.php - by enlivenapp - 11-06-2017, 11:59 PM
|