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

前端 未结 9 910
有刺的猬
有刺的猬 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:21

    Just do

    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:

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

    to

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

提交回复
热议问题