ci中的url重寫,去掉index.php

在apche conf文件中配置php

<Directory "/var/www/html/xxx">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>html

 

其中xxx指你的ci目錄ide

 

而後再在ci目錄中添加.htaccess文件,內容以下htm

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /xxx/index.php/$1 [QSA,PT,L]
</IfModule>ci

相關文章
相關標籤/搜索