zoukankan      html  css  js  c++  java
  • apache基础

    apache基于多域名的虚拟主机

    NameVirtualHost *:80
    <VirtualHost *:80>
    DocumentRoot "/var/www/html/xk/shuyou"
    ServerName www.shuyou.group
    ServerAlias shuyou.group
    ErrorLog logs/shuyou_error.log
    CustomLog logs/shuyou_access.log common
    </VirtualHost>

    <VirtualHost *:80>
    ServerName www.lizhi.group

    DocumentRoot "/var/www/html/xk/lizhi"
    ErrorLog logs/lizhi_error.log
    CustomLog logs/lizhi_access.log common
    </VirtualHost>

    <VirtualHost *:80>
    ServerName lishuyou.com
    RedirectMatch permanent ^/(.*) http://www.lishuyou.com/$1
    </VirtualHost>

    <VirtualHost *:80>
    ServerName www.lsy.com
    RedirectMatch permanent ^/(.*) http://www.lishuyou.com/$1
    </VirtualHost>

    禁用一个或多个ip访问

    <Directory "/var/www/html">
    Order deny,allow

    Allow from 0.0.0.0
    deny from 192.168.1.153
    </Directory>

    定义跳转,让访问apache域名的某目录跳转到二级域名中去

    <VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /var/www/html/xk
    ServerName www.chinaxiaokang.com
    RedirectMatch 301 /news/(.*) http://news.chinaxiaokang.com//$1
    RedirectMatch 301 /yulepindao/(.*) http://yule.chinaxiaokang.com//$1
    RedirectMatch 301 /tupian/(.*) http://tupian.chinaxiaokang.com//$1
    RedirectMatch 301 /xianyu/(.*) http://xianyu.chinaxiaokang.com//$1
    RedirectMatch 301 /m/(.*) http://m.chinaxiaokang.com//$1
    RedirectMatch 301 /m/(.*) https://m.chinaxiaokang.com//$1
    #ServerAlias chinaxiaokang.com
    ErrorLog logs/xiaokang-error_log
    # CustomLog logs/xiaokang-access_log common
    CustomLog "|/usr/sbin/rotatelogs /var/log/httpd/%Y%m%d_xiaokang_access_log 86400 480" common
    </VirtualHost>

    如下是:单域名跳转

    <VirtualHost *:80>
    ServerName chinaxiaokang.com
    RedirectMatch permanent ^/(.*) http://www.chinaxiaokang.com/$1
    </VirtualHost>

    <VirtualHost *:80>
    ServerName www.cnxk.com
    RedirectMatch permanent ^/(.*) http://www.chinaxiaokang.com/$1
    </VirtualHost>

    魅力男神
  • 相关阅读:
    技术文章阅读-Pi-Hole < 4.3.2 Command Injection & PrivEsc (CVE-2019-13051)
    技术文章阅读-d-link-routers-found-vulnerable-rce
    技术文章阅读-蜂网互联企业级路由器v4.31密码泄露漏洞
    使用mkcert工具自签https证书
    查询给定时间是否在当前周
    nodeJS 一些笔记
    手机端页面布局方案
    关于HTML5的应用缓存功能
    将伪数组转换为数组的方法
    Cookies的使用之购物车的实现
  • 原文地址:https://www.cnblogs.com/capable/p/7397427.html
Copyright © 2011-2022 走看看