Remove index.php in codeigniter 2.1.0

前端 未结 9 1744
渐次进展
渐次进展 2020-11-29 05:10

I tried everything on google related to removing index.php from URL in codeigniter but no solution worked for me I am using codeigniter version 2.1.0 How I can remove index

9条回答
  •  隐瞒了意图╮
    2020-11-29 05:28

    Have you tried using the example given in the CodeIgniter user guide?

    By default, the index.php file will be included in your URLs:

    example.com/index.php/news/article/my_article
    

    You can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the "negative" method in which everything is redirected except the specified items:

    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|robots\.txt)
    RewriteRule ^(.*)$ /index.php/$1 [L]
    

    In the above example, any HTTP request other than those for index.php, images, and robots.txt is treated as a request for your index.php file.

    http://codeigniter.com/user_guide/general/urls.html

提交回复
热议问题