apache
文章平均质量分 79
acuna1
这个作者很懒,什么都没留下…
展开
-
Apache配置详解(最好的APACHE配置教程)
Apache的配置 Apache的配置由httpd.conf文件配置,因此下面的配置指令都是在httpd.conf文件中修改。 主站点的配置(基本配置) (1) 基本配置: ServerRoot "/mnt/software/apache2" #你的apache软件安装的位置。其它指定的目录如果没有指定绝对路径,则目录是相对于该目录。 PidFile logs/ht转载 2013-03-21 07:39:40 · 544 阅读 · 0 评论 -
How to Set Up Apache Virtual Hosts on Ubuntu 12.04 LTS
What the Red MeansThe lines that the user needs to enter or customize will be in red in this tutorial! The rest should mostly be copy-and-pastable.About Virtual HostsVirtual Hosts ar转载 2013-03-21 14:16:31 · 773 阅读 · 0 评论 -
如何让自己的本地APACHE服务器支持.htaccess .
1 . 如何让自己的本地APACHE服务器支持.htaccess如何让自己的本地APACHE服务器支持".htaccess"呢?其实只要简单修改一下apache的httpd.conf设置就可以让APACHE支持.htaccess了,来看看操作打开httpd.conf文件(在那里? APACHE目录的CONF目录里面),用文本编辑器打开后,查找(1)Options FollowSym转载 2013-04-13 14:51:58 · 729 阅读 · 0 评论 -
网上开店zencart搭建全过程---UBUNTU 8.04+MYSQL5.0+PHP5+APACHE2+ZENCART1.38
-一、介绍: 原来一直用osCommerce搭建网上商店系统,但似乎这个软件后续开发进度有问题,最新的版本也是几年前的。后来开始接触到zencart,安装后进入管理界面,一切都是那么熟悉,感觉它就是在osCommerce的基础上发展而来的,最新版本是去年的,可见它还在成长,于是我毫不犹豫的改用zencart了,更可贵的是它具有丰富的中文社区人气,从中文社区下载的就是完全中文化的版本,而且里面转载 2013-04-25 08:29:01 · 1875 阅读 · 0 评论 -
ubuntu apache2下目录结构 .
在Windows下,Apache的配置文件通常只有一个,就是httpd.conf。但我在Ubuntu Linux上用apt-get install apache2命令安装了Apache2后,竟然发现它的httpd.conf(位于/etc/apache2目录)是空的!进而发现Ubuntu的 Apache软件包的配置文件并不像Windows的那样简单,它把各个设置项分在了不同的配置文件中,看起来复杂,转载 2013-04-25 12:35:37 · 772 阅读 · 0 评论 -
Set privilege of folder under Apache of Linux
you don't have to set rwx for 'other'. You should change the owner and/or group of the particular folder/file you are trying to protect. E.g.:chown -R cwd:www-data /var/www/cwd.comchmod 750 /var/转载 2013-05-21 14:58:03 · 762 阅读 · 0 评论 -
如何让apache支持伪静态
mod_rewrite是Apache的一个非常强大的功能,它可以实现伪静态页面。下面我详细说说它的使用方法!对初学者很有用的哦!1.检测Apache是否支持mod_rewrite通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支转载 2013-05-25 15:23:25 · 811 阅读 · 0 评论 -
网站屏蔽中文浏览器/英文浏览器方法
一 打开 Apache 的配置文件 httpd.conf 。二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉三 在 httpd.conf中添加: RewriteEngine On #RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]+\.html转载 2013-05-25 15:27:55 · 4341 阅读 · 0 评论