Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
16 views1 page

Troubleshooting: $config ('Index - Page') "Index - PHP"

If only the default page is loading regardless of the URL, the server may not support REQUEST_URI needed for search engine friendly URLs. First, check the URI Protocol settings in config.php and try alternate settings. If that doesn't work, change the index_page setting in config.php from "index.php" to "index.php?" to force CodeIgniter to add a question mark to URLs.

Uploaded by

kadokita17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

Troubleshooting: $config ('Index - Page') "Index - PHP"

If only the default page is loading regardless of the URL, the server may not support REQUEST_URI needed for search engine friendly URLs. First, check the URI Protocol settings in config.php and try alternate settings. If that doesn't work, change the index_page setting in config.php from "index.php" to "index.php?" to force CodeIgniter to add a question mark to URLs.

Uploaded by

kadokita17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Troubleshooting

If you find that no matter what you put in your URL only your default page is loading, it might be
that your server does not support the REQUEST_URI variable needed to serve search-engine
friendly URLs. As a first step, open your application/config/config.php file and look for the URI
Protocol information. It will recommend that you try a couple alternate settings. If it still doesnt
work after youve tried this youll need to force CodeIgniter to add a question mark to your URLs.
To do this open your application/config/config.php file and change this:
$config['index_page'] = "index.php";

To this:
$config['index_page'] = "index.php?";

You might also like