Home  >  Article  >  Backend Development  >  php中,输入一个地址,显示另一网站的内容,并地址还要是我刚输 入的地址,在线等

php中,输入一个地址,显示另一网站的内容,并地址还要是我刚输 入的地址,在线等

WBOY
WBOYOriginal
2016-06-23 14:21:29802browse

php环境中

我想输入 www.xy.com 能直接显示对方(www.a.com/key/a)的网站内容,并显示的地址是我刚输入的www.xy.com
这怎么实现呢,须要修改配制文件吗,
thanks.


回复讨论(解决方案)

使用框架即可

URL重写操作,需要更改服务器配置文件

用html的iframe标签
http://www.w3school.com.cn/tags/tag_iframe.asp

------------------------------------------------------AutoCSDN签名档------------------------------------------------------

码农场??码农播种代码、放牧思想的农场! 

用curl函数

这就不关PHP的事情,是服务器软件的事情。

apache里可以用rewrite重写。

要么就用html的iframe

在www.xy.com的html页面上写:

<iframe src="http://www.a.com/key/a" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" width="100%" height="1000px"></iframe>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn