阿百川 发表于 2013-3-26 15:15:54

利用godaddy的经济型空间建N个站

godaddy的空间谈不上好,倒也不坏,如果站点不大可以使用下面代码充分利用空间,大站就算了

将域名绑定到空间,然后新建个子目录,将下面代码修改后扔到htaccess中就可以了RewriteEngine on
RewriteCond %{HTTP_HOST} ^域名$
RewriteCond %{REQUEST_URI} !^/子目录/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /子目录/$1
RewriteCond %{HTTP_HOST} ^域名$
RewriteRule ^(/)?$ 子目录/index.php

windpoppy 发表于 2013-3-26 15:31:15

:)能再具体点吗?

阿百川 发表于 2013-3-26 15:54:40

windpoppy 发表于 2013-3-26 15:31 static/image/common/back.gif
能再具体点吗?

将域名的dns改为godaddy的dns,并添加到godaddy的账户(如果是godaddy的域名可省略这步)

在hosting的域名管理中添加域名,domain.com

在ftp中建立子目录,domain

在主目录的htaccess中添加代码    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^domain.com$
    RewriteCond %{REQUEST_URI} !^/domain/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /domain/$1
    RewriteCond %{HTTP_HOST} ^domain.com$
    RewriteRule ^(/)?$ domain/index.php

jayhkun 发表于 2013-3-26 16:32:39

这样的话负载得了吗??

阿百川 发表于 2013-3-26 17:13:41

jayhkun 发表于 2013-3-26 16:32 static/image/common/back.gif
这样的话负载得了吗??

小站没问题,大站就算了

阿健 发表于 2013-3-26 17:46:11

gd负载相当强,当时1万ip都能承受住

若水 发表于 2013-3-26 21:59:21

然后把这个域名的文件传到子目录就可以了么?

若水 发表于 2013-3-26 22:45:51

设置了没有效果。

阿百川 发表于 2013-3-27 07:02:27

若水 发表于 2013-3-26 22:45 static/image/common/back.gif
设置了没有效果。

绑定的第二个域名能打开不?

不能打开,域名没有绑定或还未生效

能打开,.htaccess代码不正确

google到一篇比较详细的http://blog.lixiphp.com/godaddy-domain-to-subfolder/

flying 发表于 2013-3-27 10:13:06

稳定性如何?可以到多少流量

阿百川 发表于 2013-3-27 17:35:31

flying 发表于 2013-3-27 10:13 static/image/common/back.gif
稳定性如何?可以到多少流量

套用C大的话:小站的话这是问题吗?网站做大了这是问题吗?

h3889681 发表于 2013-3-27 18:15:32

可以摆多少文件?

阿百川 发表于 2013-3-27 18:39:23

h3889681 发表于 2013-3-27 18:15 static/image/common/back.gif
可以摆多少文件?

既然是虚拟主机,CPU和文件数肯定是有限制的,那么Godaddy虚拟主机对CPU和文件数的限制是多少呢?联系了Godaddy官方客服,回复是这样的:

The three hosting plans do not differ in terms of CPU. The number of files is limited as far as the amount of disk space allotted for each plan which is 10 GB for Economy, 100 GB for Deluxe and Unlimited for Ultimate. However, each hosting plan is limited to only having 1024 files per directory within the hosting account.

意思是说CPU和文件数的都是有限制的,针对的方案不同,CPU限制是不一样的,但是每个方案针对文件数限制是一致的,就是每个目录下的文件数不能超过1024个文件(注意,文件夹只算一个文件)。

这里Godaddy客服并没有明确告诉我们CPU限制是多少?Godaddy官方给予的回复是:We do limit the amount of system resources that a customer may use on our shared hosting servers. unfortunately we are unable to provide you with the specific limit for security reasons.意思是告诉我们出于安全原因,他们不会告诉我们CPU限制是多少。

adouer 发表于 2013-4-16 12:30:33

哈哈,正需要这个代码呢

cndjs 发表于 2013-4-16 15:59:48

要空间根目录下上传htaccess然后再绑定网站所在目录 域名也绑定:):)
页: [1] 2
查看完整版本: 利用godaddy的经济型空间建N个站