Apache下的配置文件httpd.conf、httpd-vhosts.conf 转

Apache下的配置文件httpd.conf、httpd-vhosts.conf(windows)

2013-05-24 22:09 by youxin, 58 阅读, 0 评论, 收藏, 编辑

httpd.conf文件一般存在于apache目录下的conf文件夹中,主要用来配置apache的。
http.conf里面的配置介绍:

1、Listen :监听端口,默认情况是80。

2、ServerAdmin :服务器管理员邮箱。

3、ServerName:服务名。

4、DocumentRoot:PHP网站的路径。

5、<Directory />

Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
  </Directory>

Apache访问的每个目录可设置相关的服务和特性是允许或(和)不允许。

一般修改为,否则可能会出现403页面错误。

<Directory />

Options FollowSymLinks
    AllowOverride None
  </Directory>

同时修改PHP的目录:
修改DocumentRoot和<Directory "D:/Program Files/xampp/htdocs">。
修改为PHP的网站所在的目录,如下所示:

查看问题的方法:
运行dos,输入“cd  /d  F:/xampplite/apache/bin” ,进入到xampp的bin目录,输入httpd.exe就可以查看错误。
常见问题
1、ServerRoot没配置好,可以使用绝对路径
2、document没配置好,网站路径没配置好
3、httpd-vhosts.conf没配置好,配置参考如下

<VirtualHost *:80>
    ServerName   localhost
    DocumentRoot  F:/Web/public

RewriteEngine off

<Location />
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule !\.(js|ico|gif|jpg|png|css)$ /index.php
    </Location>
   
    <Directory F:/xampplite/htdocs>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
   
</VirtualHost>
如果没有权限的话,在httpd.conf还增加一个:

<Directory "F:/同步文件夹/百度云同步盘/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>

转自:http://blog.sina.com.cn/s/blog_6721f25c0100m3yy.html

时间: 2024-10-13 00:27:49

Apache下的配置文件httpd.conf、httpd-vhosts.conf 转的相关文章

Apache的主配置文件:/etc/httpd/conf/httpd.conf

Apache的主配置文件:/etc/httpd/conf/httpd.conf默认站点主目录:/var/www/html/Apache服务器的配置信息全部存储在主配置文件/etc/httpd/conf/httpd.conf中,这个文件中的内容非常多,用wc命令统计一共有1009行,其中大部分是以#开头的注释行.[[email protected] ~]# wc -l /etc/httpd/conf/httpd.conf 1009 /etc/httpd/conf/httpd.conf [[emai

虚拟主机是设置在httpd-vhosts.conf还是vhosts.conf还是httpd.conf

https://blog.csdn.net/weisubao/article/details/43536723 解决方案:虚拟主机是设置在httpd-vhosts.conf还是vhosts.conf还是httpd.conf? 答案是:都可以.但是推荐在vhosts.conf中设置. ——官方文档的举例是在httpd.conf中设置的. ——百度一下会发现99%都是在httpd-vhosts.conf中设置的.但是这种设置会存在一些问题,比如设置后localhost打不开等等问题,虽然解决方案简单

解决方案:虚拟主机是设置在httpd-vhosts.conf还是vhosts.conf还是httpd.conf?

答案是:都可以.但是推荐在vhosts.conf中设置. --官方文档的举例是在httpd.conf中设置的. --百度一下会发现99%都是在httpd-vhosts.conf中设置的.但是这种设置会存在一些问题,比如设置后localhost打不开等等问题,虽然解决方案简单,但是毕竟感觉不太保险. --在vhosts.conf中设置的话,比较简单,而且没有什么幺蛾子问题. <VirtualHost *:80> ServerName localhost DocumentRoot "E:

apache的/etc/httpd/conf/httpd.conf和/usr/local/apache2/conf/httpd.conf区别

一.问题 centos系统用yum安装完apache后,重启后有时会失效,然后去网上找资料,发现有的说重启命令是这样的: /etc/init.d/httpd restart 而有的呢,说重启命令应该是这样的: service httpd restart 这两行命令写法不同,但其实是同一个东西,都是重启httpd服务. 但很多时候发现改了配置文件后,重启并不生效,然后网上的资料有的让改 /etc/httpd/conf/httpd.conf 这个文件,有的让改 /usr/local/apache2/

httpd(apache)程序环境配置文件

CentOS 6:httpd-2.2程序环境:   配置文件:     /etc/httpd/conf/httpd.conf     /etc/httpd/conf.d/*.conf   服务脚本:     /etc/rc.d/init.d/httpd     脚本配置文件:/etc/sysconfig/httpd   主程序文件:     /usr/sbin/httpd     /usr/sbin/httpd.event     /usr/sbin/httpd.worker   日志文件:  

vim /etc/httpd/conf/httpd.conf

[[email protected] httpd]# cat -n /etc/httpd/conf/httpd.conf  //httpd.conf配置文件初始值 1 # 2 # This is the main Apache server configuration file. It contains the 3 # configuration directives that give the server its instructions. 4 # See <URL:http://httpd

D:/apache2/conf/httpd.conf:Cannot load D:/apache2/modules/mod_actions.so

报错如下: errors reported here must be corrected before service can be started.httpd:Syntax error on line 60 of D:/apache2/conf/httpd.conf:Cannot load D:/apache2/modules/mod_actions.so into server:\xd5\xd2\xb2\xbb\xb5\xbd\xd6\xb8\xb6\xa8\xb5\xc4\xa3\xbf\

vim /usr/local/apache2/conf/httpd.conf

[[email protected] ~]# vim -n /usr/local/apache2/conf/httpd.conf 1 # 2 # This is the main Apache HTTP server configuration file. It contains the 3 # configuration directives that give the server its instructions. 4 # See <URL:http://httpd.apache.org/

linux下Nginx配置文件(nginx.conf)配置设置详解(windows用phpstudy集成)

linux备份nginx.conf文件举例: cp /usr/local/nginx/nginx.conf /usr/local/nginx/nginx.conf-20171111(日期) 在进程列表里 面找master进程,它的编号就是主进程号. ps -ef | grep nginx 查看进程 cat /usr/local/nginx/nginx.pid 每次修改完nginx文件都要重新加载配置文件linux命令: /usr/local/nginx -t //验证配置文件是否合法 若ngin