How to rewrite the index.php of Codeigniter on Windows Azure

前端 未结 3 2050
日久生厌
日久生厌 2020-11-28 10:31

How to remove index.php in codeigniter on Windows Azure and IIS?

Can I rewrite the URL for the index.php of Codeigniter without a particular module?

3条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-28 11:19

    You can also implement other rewrite rules like

    
    
    
    
    
    

    with one condition, is to change $config['url_protocal']='PATH_INFO'; in config/config.php this will tell URL rewrite module to use re-writed URI instead of original URL, otherwise you will have 404 page not found problem.

提交回复
热议问题