• 如何加入该网站for Linux(绑定域名)


    【路径跟踪配置由阿里云提供的标准环境的路径为准,假设你单独安装。请根据实际的安装路径配置】。
     
    1.cd /alidata/server/httpd/conf/vhosts/ 进入绑定域名所在文件夹。
     
    2.vim test.conf  建立一个配置文件。test能够自己命名;
     
    3.点击字母“i”開始编辑文件,输入内容:
            DocumentRoot /alidata/www/phpwind
            ServerName localhost
            ServerAlias localhost
           
                Options -Indexes FollowSymLinks
                AllowOverride all
                Order allow,deny
                Allow from all
           
           
                    RewriteEngine On
                    RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
                    RewriteRule ^(.*)/simple/([a-z0-9\_]+.html)$ $1/simple/index.php?

    $2

           
            ErrorLog “/alidata/log/httpd/phpwind-error.log”
            CustomLog “/alidata/log/httpd/access/phpwind.log” common
     
     
    当中:
    ServerName www.test.com 绑定的站点域名
    ServerAlias test.com 绑定的站点别名(您假设有多个域名加入在这里)
    DirectoryIndex index.html index.php index.htm 设置默认首页
    DocumentRoot /alidata/www/test 和 Directory “/alidata/www/test” 都是指定站点的文件夹,须要一致。
     
    按“esc”退出编辑模式,输入“:wq”保存退出。

     
    4.输入命令:/alidata/server/httpd/bin/apachectl restart 重新启动apache測试。
     
    5.測试站点。请在浏览器中输入域名,測试设置。
     

    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    Java 快速入门-06-JDK 目录文件说明
    Java快速入门-05-数组循环条件 实例《延禧攻略》
    腾讯云服务器 选购+远程控制 图文教程
    无法获得锁 /var/lib/dpkg/lock
    Ubuntu 安装 PhpMyAdmin 图文教程
    基于Redis的BloomFilter算法去重
    CAP理论
    Linux常用命令回顾
    基于Solr实现HBase的二级索引
    Solr搜索服务架构图
  • 原文地址:https://www.cnblogs.com/gcczhongduan/p/4632800.html
Copyright © 2020-2023  润新知