10个不同的域名,2个php文件,仅数据库查询更改
我有10个域名,其中有2个php文件index.php,inside.php 仅根据站点 ID 查询更改 现在我正在通过 ftp 上传 2 个页面到 10 个网站,
有什么简单的方法可以做到这一点吗?
i have 10 domain names which has 2 php files index.php, inside.php
only query changes as per site id
right now i am uploading 2 pages through ftp to 10 sites
is there any easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对所有域使用相同的文档根,并在 PHP 脚本中检查
$_SERVER[HTTP_HOST]
以确定使用哪个主机名。Use the same document root for all domains, and in your PHP script check
$_SERVER[HTTP_HOST]
to determine which hostname is used.