How to remove “index.php” in codeigniter's path

后端 未结 27 1352
盖世英雄少女心
盖世英雄少女心 2020-11-22 07:17

How do I remove the \"index.php\" sticking out in every path in codeigniter somewhere in the center? I want clean non index.php-fied URLs?

27条回答
  •  伪装坚强ぢ
    2020-11-22 08:09

    Ensure you have enabled mod_rewrite (I hadn't).
    To enable:

    sudo a2enmod rewrite  
    

    Also, replace AllowOverride None by AllowOverride All

    sudo gedit /etc/apache2/sites-available/default  
    

    Finaly...

    sudo /etc/init.d/apache2 restart  
    

    My .htaccess is

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

提交回复
热议问题