Codeigniter and URL Rewrite on IIS 6

I need to install Codeigniter on a shared host that runs IIS 6.0. I am aware of URL rewriting issues. Also about Isapi Rewrite, but I cannot install or install anything on this host. The start page works fine, but I can’t access any other application controller, I always get 404. I tried to change $config['index_page']as well $config['uri_protocol'], but nothing works. Is there any other way to get URL rewriting in IIS? Or maybe in PHP? Thank.

+3
source share
1 answer

If you cannot install ISAPI Rewrite, find

$ config ['enable_query_strings'] = FALSE;

application/config/config.php . URL-, SEO, .

0

Source: https://habr.com/ru/post/1779993/


All Articles