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

后端 未结 27 1465
盖世英雄少女心
盖世英雄少女心 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条回答
  •  旧时难觅i
    2020-11-22 08:14

    All above methods failed for me and then I found that I was not changing AllowOverride None to AllowOverride All in my virtual host file at /etc/apache2/sites-available/default

    
        ServerAdmin webmaster@localhost
    
        DocumentRoot /var/www
        
                Options FollowSymLinks
                AllowOverride All    <---- replace None with All
        
        
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All   <---  replace None with All
                Order allow,deny
                allow from all
        
    
         ...
    

提交回复
热议问题