
Apache
wangking717
这个作者很懒,什么都没留下…
展开
-
Ubuntu下apache2绑定域名
编辑APACHE httpd.conf文件vim /etc/apache2/httpd.conf 增加如下:ServerName localhost<VirtualHost *:80>ServerName www.52juchang.comDocumentRoot /var/www</VirtualHost><Vir...原创 2013-06-05 03:44:54 · 413 阅读 · 0 评论 -
UBUNTU 轻松一键安装LAMP和配置phpmyadmin
wangking 写道本文转自远方博客:http://farlee.info/archives/linux-ubuntu-lamp-apache-mysql-php-phpmyadmin-install-configuration.html PHP开发和服务器运行环境首选LAMP 组合,即Linux+Apache+Mysql+Php/Perl/Python,能最优化服务器性能。如何...原创 2012-10-08 09:42:00 · 159 阅读 · 0 评论 -
Nginx和Apache伪静态配置
很多程序都会用到伪静态。在这里统一记录下操作的方法。 Apache伪静态配置:A) PHP配置vim /etc/php.inicgi.fix_pathinfo = 1 #将注释去掉 B) apache配置vim /etc/httpd/conf/httpd.confLoadModule rewrite_module modules/mod_rewrite.so #...原创 2016-05-10 17:24:40 · 300 阅读 · 0 评论 -
Apache禁用https
在centos下安装Apache默认是启动了https,如果不想使用https的话,可以在/etc/httpd/conf.d/下将ssl.conf的后缀改名即可。。 然后重启apache就可以看到效果了。...原创 2016-05-13 10:31:29 · 2151 阅读 · 0 评论 -
CentOS7下安装LAMP以及phpMyAdmin
wangking写道LAMP是Linux+Apache+MySQL+PHP的简称,是用于搭建web服务器的一种解决方案。从CENTOS 7开始Red Hat公司推荐使用MariaDB而不是MySQL,MariaDB完全兼容MYSQL,所以这篇文章里我们也沿用MariaDB! 1、安装LAMP之前要安装EPEL,以便安装源以外的软件,如phpMyAdmin等工具。yum inst...原创 2016-03-25 09:58:20 · 180 阅读 · 0 评论