网站首页 Linux 在Ubuntu中搭建ThinkPHP隐藏index.php文件
1、开启Apache2的rewrite模块
修改mods-enable配置,添加一个软件链接
sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
2、在项目根目录下添加.htaccess文件,修改rewrite规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
3、重启服务器
sudo /etc/init.d/apache2 restart (也可以service apache2 restart)
参考文章
http://blog.csdn.net/super_pan/article/details/49255391
转载请注明出处!