Ubuntu-server 下Apache2 配置.htaccess 隐藏thinkPHP项目index.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu-server 下Apache2 配置.htaccess 隐藏thinkPHP项目index.php相关的知识,希望对你有一定的参考价值。
需要开启Apache2的rewrite模块
1、打开/etc/apache2/apache2.conf
将文件中的AllowOverride None改为AllowOverride All
2、修改mods-enable配置,添加一个软件链接
cd /etc/apache2/mods-enable
ln -s ../mods-avaiable/rewrite.load rewrite.load
3、在项目根目录下添加.htaccess文件,修改rewrite规则
<IfModule mod_rewrite.c> RewriteEngine on #不显示index.php RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule>
4、重启服务器
service apache2 restart
以上是关于Ubuntu-server 下Apache2 配置.htaccess 隐藏thinkPHP项目index.php的主要内容,如果未能解决你的问题,请参考以下文章