English 中文(简体)
将领域与概况联系起来(PHP)
原标题:Linking Domains to Profiles (PHP)

d 我将自己描述为一个相当先进的项目设计师,我即将开始一个新项目的工作。

基本上,用户将购买一个账户并制作自己的形象。 如果他们想要,他们可以把自己的个人领域放在我们的网站上。

问题在于,我如何把自己的领域引向他们的形象?

问题回答

• 将贵项目确定为在阿普什的违约虚拟招待所(虚拟主机将被用于没有自己的领域)。 Don t知道你是如何把它称作ache。

然后在PHP中核对<代码>_SERVER[ HTTP_HOST],以获得域名。 然后,你可以改用简介网页,或直接以这个域名显示。

人们必须将其领域引向你的IP地址(或用CNAME向您的IP指明一个子宫)。

On your side, you can create a virtual host in apache (or whatever) to map from usercustomdomain.com to their profile. A drirective like this may be enough for you:

<VirtualHost *:80>
  DocumentRoot c:/htdocs
  ServerName usercustomdomain.com
  Redirect permanent / /profile.php?user=329
</VirtualHost>

在他们方面,他们利用本国航天中心供应商,需要为用户客户目录制作一个名称记录,以显示你的网络服务器地址。 这样做非常容易,好坏,或者说什么,但你可能希望向用户提供贵国网站关于如何这样做的一些文件。





相关问题
Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

Multiple Sites with common files

I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, I currently duplicate the files each time I create a new site and upload different css and images. What ...

http server validation

I finish a litle http server, writing from scratch. I would like to be sure that my imlementation is conforme to the HTTP specifications. W3C give us tools for HTML/XML conformance, but i see nothing ...

热门标签