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

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

    have you tried this:

        RewriteEngine On
        RewriteBase /yoursite.com/
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)$ public/index.php/$1 [L]
    

提交回复
热议问题