Removing index.php - official guide not working (code igniter)

后端 未结 3 498
耶瑟儿~
耶瑟儿~ 2021-01-28 02:38

I am trying to remove the index.php in the url for Code Igniter. According to the official guide, I should add the following code to the .htaccess file.

RewriteE         


        
3条回答
  •  爱一瞬间的悲伤
    2021-01-28 03:21

    I think the following code should work for you

    RewriteEngine on
    RewriteCond $1 !^(index\.php|css|js|public|themes|captcha|robots|documents|\.txt)
    RewriteRule ^(.*)$ /projectFolder/index.php/$1 [L]
    

    Hope this helps you.

提交回复
热议问题