码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu(14.04) 下配置重写

时间:2016-03-08 13:32:07      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

1.开启rewrite模块,使用命令:a2enmod  rewrite

2.在apache2.conf,配置你网站的目录(是目录而定)

技术分享

3.在你的网站目录下添加去掉index.php的.htaccess(分布式配置文件)

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

4.重启apache.  service apache2 restart .即可实现

 

ubuntu(14.04) 下配置重写

标签:

原文地址:http://www.cnblogs.com/yuwensong/p/5253630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!