How to remove public/index.php/ from url in Codeigniter 4

前端 未结 9 885
有刺的猬
有刺的猬 2021-02-02 18:00

I want normal URL like www.sample.com/controller not www.sample.com/public/index.php/controller.

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCo         


        
9条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-02 18:27

    Step 1: In public/ directory, copy index.php and .htaccess to your root project directory.

    Step 2: In the root project directory, open index.php and edit the following line:

    change:

    $pathsPath = FCPATH . '../app/Config/Paths.php';

    change TO

    ($pathsPath = FCPATH . 'app/Config/Paths.php';)

    enter image description here

提交回复
热议问题