Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的本地主机上进行开发,<iframe>出于调试原因,我想显示一个,但 Apache 一直在目录中搜索我提供 Iframe 的源代码。
<iframe>
PHP:
echo "<iframe src= http://newyork.craigslist.com</frame>"
结果是:
在此服务器上未找到请求的 URL /newyork.craigslist.org。
如何指定目标 URL 不在服务器上?
使用有效的 HTML。
echo '<iframe src="http://newyork.craigslist.com"></frame>';
如果您决定对"字符串文字使用双引号,请确保使用 . 转义属性引号\。
"
\
src=您应该删除and之间的空格,并在之前http://添加:></frame>
src=
http://
>
</frame>
echo "<iframe src='http://newyork.craigslist.com'></frame>"