>
Thank you for signing up with IX Web Hosting. Our automated ordering system is instantly creating your account while you are reading this email. You have chosen to purchase the following service:
*) Business Plus
You can review the real-time status of your account setup here:
https://www.ixwebhosting.com/sig … 60645fgdfde7f7c606c

Your control panel is already created:
Control Panel URL: https://manage.ixwebhosting.com/
Email Address: xxxxxx@xxxxx.com
Password: xxxxxxxxxx
As soon as the setup of your product is complete, it will be added to the homepage of your control panel. Once your hosting account is setup we will email you the account’s access information. You will also be able to retrieve your account access information at the URL address stated above. At that point, you will be able to access and manage your brand new hosting account through the control panel.
(more…)
使用过IXWebHosting主机的朋友应该都知道,IXwebhosting同一IP下只能做一个站,当分配给你的独立IP用完之后,在新建站的话,这时用的都是共享IP,共享IP有很大的风险,随时都可能面临被封的命运,所以很多人都希望在同一IP下建立多个网站
是否有这样的方法呢?O(∩_∩)O~,当然有了,不然就写这篇文章了,IXWebHosting的主机支持.htaccess文件,况且网站都是独立IP,所以我们将网站的域名解析到自己的独立IP,然后在独立IP所在网站的根目录建立一个子文件夹,然后制作了一个.htaccess文件。
HostMonster主机下的/public_html/目录文件太乱了,一直想找个好方法,让主域名像子站域名那样指向一个子目录,这样根目录下就都是文件夹,看着舒畅,如果子站较多,也便于管理。
方法很简单,用.htaccess重写搞定:
# 开始重写主域名
RewriteEngine on
# 设置重写条件
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
# Change 'subfolder' to be the folder you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subfolder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 设置重写规则
RewriteRule ^(.*)$ /aaaaa/$1
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
RewriteRule ^(/)?$ aaaaa/index.php [L]
说明:将yourmaindomain.com,更换为你的主域名,将aaaaa更换为主域名要指向的目录。
最近有些站长朋友问我这样的问题,问那些美国主机支持成人网站?听到这个问题有点惊讶,不过也不怎么惊讶,某些站长购买美国主机很大一部分原因,就是可能因为国外主机支持XX网站,可以做XX站。
听到这个问题不得不说的是,如果你抱有这个想法的话,你就大错特错了,虽然,美国对这类的站点限制不是非常的严格,但是,这类站点在我国是要严重封杀的,并不是美国所有的主机都支持这类网站,它们很多的主机商是不支持这类信息的,以前介绍的HostMonster、BlueHost、Godaddy都是非常正规的主机商,它们不支持XX网站的,这里你不要误会,并不是说支持XX站的直接都是非正规的网站,没那个意思。
有一点要说明的是在国内你不要抱有建立XX站的想法,为什么?不言而喻,恐怕我不说大家也能知道原因,而且,做这些站点的危险性也非常的大,搞不好就……所以说不要有这些想法,即使抱有“侥幸心理”,还是劝你要三思而后行。 (more…)