iframe未加载到远程服务器上

时间:2013-06-22 04:43:06

标签: php html codeigniter iframe

我正在开发一个管理员将发布pdf文件的网站,该文件将被加载到html页面中。我使用iframe这样做,它在localhost上运行正常但是当我上传到远程服务器时它迫使我下载pdf文件。这是我的代码

<iframe src="<?php echo base_url();?>uploads/2.pdf" width="950px" height="800px" >

here 是该页面的链接。请建议我解决这个问题。

1 个答案:

答案 0 :(得分:0)

你可以使用

<iframe scrolling="yes" frameborder="0" src="<?php echo base_url('uploads/2.pdf');?>" width="950px" height="800px" >