codeigniter: Remove index.php not working

后端 未结 3 1555
囚心锁ツ
囚心锁ツ 2021-01-14 06:39

I am trying to remove index.php from url. But its not working!

Using ubuntu 12.04 ( LAMP).

CodeIgniter_2.1.2

.htaccess file



        
3条回答
  •  感情败类
    2021-01-14 07:30

    The project root-directory .htaccess file replace with below contains.

    RewriteEngine on 
    RewriteBase /your-project-directory-name/ 
    RewriteCond $1 !^(index.php|resources|robots.txt) 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ index.php/$1 [L,QSA] 
    

提交回复
热议问题