How do I remove 'index.php' from URL in CodeIgniter?

后端 未结 7 1900
清酒与你
清酒与你 2020-11-30 13:20

How do I remove index.php from my URL in CodeIgniter?

I removed index.php from my configuration file, and I have run my rewrite_modul

7条回答
  •  北海茫月
    2020-11-30 13:51

    I also had a problem with the rewrite rule suggested in the CodeIgniter user guide. I solved it by removing the slash from in front of index.php

    RewriteRule ^(.*)$ index.php/$1 [L]
    

提交回复
热议问题