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

后端 未结 27 1466
盖世英雄少女心
盖世英雄少女心 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

    If you are on linux and using apache2 server then we may need to override apache2.conf file also beside changes on .htaccess file. Find apache2 configuration file on /etc/apache2/apache2.conf .

    Search Directory /var/www/ Change AllowOverride None -> AllowOverride All

    
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    

提交回复
热议问题