开发者社区> 问答> 正文

linux一键安装包问题

512内存 linux系统apache环境,所装程序需要php5.42 以上,找了所有面板都不合适。使用一键安装包配置web环境,发现作者只是配置了phpwind论坛,根目录设在phpwind下,并没讲如何安装多个网站,绑定网站也很简单,我是菜鸟一个,试了多次不能成功。http://help.aliyun.com/view/11108189_13435438.html?spm=5176.7224445.1997283057.5.YE8ahk   ,http://help.aliyun.com/view/13435464.html,求详解???

展开
收起
菜鸟72 2014-05-28 18:35:03 8780 0
1 条回答
写回答
取消 提交回答
  • 回楼主菜鸟72的帖子
    如何添加网站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.测试网站。请在浏览器中输入域名,测试设置。



    这里的代码是否少了内容?
    2014-05-28 18:38:39
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Alibaba Cloud Linux 3 发布 立即下载
ECS系统指南之Linux系统诊断 立即下载
ECS运维指南 之 Linux系统诊断 立即下载