apache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache相关的知识,希望对你有一定的参考价值。

  1. Apache2.4
  2. 一个或多个本地网站

流程

  • 打开Apache的httpd.conf配置文件[apache_dir/conf/httpd.conf]

  • 引用子配置文件httpd_vhosts.conf(将原本第二行有的注释”#”去掉即可)

# Virtual hosts
Include conf/extra/httpd-vhosts.conf
  • 1
  • 2
  • 1
  • 2
  • 打开Apache的子配置文件——httpd-vhosts.conf [apache_dir/conf/extra/httpd-vhosts.conf]

  • 然后在后面添加如下代码

<VirtualHost *:80>
    # 管理员邮箱
    ServerAdmin [email protected]
    # 网站根目录
    DocumentRoot "C:/Develop/Prj/web/LMS"
    # 网站域名
    ServerName test2.dowhat.com
    # log文件保存路径
    ErrorLog "C:/ServerLogs/error.log"
    CustomLog "C:/ServerLogs/access.log" common
    # 该虚拟主机根目录权限相关设置
    <Directory />
        # 允许根目录中的.htaccess生效并覆盖此处设置
        AllowOverride All
        # 允许该目录所有的用户操作权限
        Require all granted
    </Directory>
</VirtualHost>
  • 如果还有一个项目需要挂载到Apache上,可以继续在httpd_vhosts.conf中继续添加:
<VirtualHost *:80>
    ServerAdmin [email protected]
    # 另一个网站根目录
    DocumentRoot "C:/Develop/Prj/web/ecnu_mind"
    # 另一个网站的域名
    ServerName test2.dowhat.com
    ErrorLog "C:/ServerLogs/error.log"
    CustomLog "C:/ServerLogs/access.log" common
    <Directory />
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>
  • 然后打开C:\Windows\System32\drivers\etc\hosts(如果没有,则新建一个hosts文件,注意没有后缀),在文件最后加上:
127.0.0.1 test.dowhat.com
127.0.0.1 test2.dowhat.com
  • 二者的端口都为80,通过这种本地dns解析(hosts文件)联合apache自动关联ServerName的方式,让这两个网站都独立工作,并且可以通过不同的域名(test.dowhat.com和test2.dowhat.com)登录两个网站。

  • 是不是看上去和真的网站一样呢?XD
    技术分享


  • 最后附上我的.htaccess配置,因为是项目后台基于thinkphp,有具体业务逻辑,所以这里就不赘述了。如果你的后台也是基于thinkPHP或者想了解一点点其他的apache相关配置,也可以看看。
# 允许在该目录下的所有符号链接(软连接,即文件中的连接路径,包括下面的URL重写所代表的路径,所以必须要有,同时不启用indexes以防止用户直接查看网站目录)
Options FollowSymlinks
# 默认索引文件为index.php
DirectoryIndex index.php
<IfModule mod_rewrite.c>
  # url重启模块开启
  RewriteEngine On
  # url重写条件匹配-d文件夹,-f文件  
  RewriteCond %{REQUEST_FILENAME} !-d  
  RewriteCond %{REQUEST_FILENAME} !-f
  # 在URL中省略index.php
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

以上是关于apache的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf Linux片段

elasticsearch代码片段,及工具类SearchEsUtil.java

apache_conf 针对.htaccess的安全调整片段。

apache_conf 强大的.htaccess片段,需要在最顶层使用RewriteEngine On

日志片段,类中的Logfactory声明

python分析apache和nginx日志文件输出访客ip列表的代码