Codeigniter .htaccess

前端 未结 2 1249
滥情空心
滥情空心 2021-01-21 22:59

Sorry for my bad english...

I have the most basic possible CodeIgniter setup and can\'t make it work... if i access the url http://domain.com/index.php?controllerX/metho

2条回答
  •  无人共我
    2021-01-21 23:35

    change your .htaccess file as:

    apart from the changes we did in .htaccess file we also have to verify/changed the following setting :

    Apache to read .htaccess files located under the /var/www/html directory. You can do this by editing httpd.conf file:

    sudo nano /etc/httpd/conf/httpd.conf

    Find the section and change AllowOverride None to

    AllowOverride All
    
     
        AllowOverride All
     
    Save and exit.
    

    Now restart Apache to put the change into effect:

    sudo systemctl restart httpd

    rest this worked for me

提交回复
热议问题