Some findings and thoughts about iframe

Some findings and thoughts about iframe
This story starts with an unexpected discovery today. The company has several websites. There are links between each other in the friend link. I just changed a link and wanted to check it. When I used the webmaster tool to check, I found that my link was not there! It turns out that I put the friendly links in footer.hmtl. Then embed it into the homepage via iframe. In this way, what is detected is not the home page link, but the link to the footer page. The same is true for search engines. Search engines will look at the pages introduced by the iframe and follow the links inside, but they don’t pay much attention to them. And each individual iframe is also treated as a separate page. In fact, this can be found when viewing the source code of the page. You can only see the code of the iframe, but not the code of the page inside.

Code

Copy code
The code is as follows:

<div id="foot" class="clear_left">
<iframe src="web/iframe/foot.html" width="960" height="100" align=""
frameborder="0" hspace="0" scrolling="no" vspace="0"
allowtransparency="1"></iframe>
</div>


Based on these considerations. There are many places where iframes cannot be used. Although sometimes he is very useful.
Iframes are no longer used intentionally. Of course we have to find a way to replace it. The first thing that comes to mind is of course include, and there are many types of include. As for jsp, there are two types: one is the include directive %@include file=""%>, and the other is the jsp action directive: <jsp:include page="" /> The former is suitable for including static files, and the latter is suitable for including dynamic jsp. There is also an ssi instruction that has nothing to do with jsp directly. I only know that this method exists but have never used it. It seems to be parsed by the web server. I don't know the details, if anyone knows please let me know.
By the way, I found that Tencent’s website does not use iframe. Many other large websites also use it, such as Sina, Taobao and so on. Looking forward to knowing the solution of qq.

<<:  JavaScript Composition and Inheritance Explained

>>:  Teach you how to achieve vertical centering elegantly (recommended)

Recommend

Detailed explanation of the use of $emit in Vue.js

1. Parent components can use props to pass data t...

MySQL slow query optimization: the advantages of limit from theory and practice

Many times, we expect the query result to be at m...

Detailed analysis of the syntax of Mysql update to modify multiple fields and

When updating a record in MySQL, the syntax is co...

js date and time formatting method example

js date time format Convert the date and time to ...

In-depth explanation of the impact of NULL on indexes in MySQL

Preface I have read many blogs and heard many peo...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

MySQL 5.7.10 Installation Documentation Tutorial

1. Install dependency packages yum -y install gcc...

Detailed Example of MySQL curdate() Function

MySQL CURDATE Function Introduction If used in a ...

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...

A brief discussion on the problem of forgotten mysql password and login error

If you forget your MySQL login password, the solu...

Summary of 6 Linux log viewing methods

As a backend programmer, you deal with Linux in m...

Implementation steps of mysql master-slave replication

Table of contents mysql master-slave replication ...

VMware WorkStation 14 pro installation Ubuntu 17.04 tutorial

This article records the specific method of insta...

How to install phabricator using Docker

I am using the Ubuntu 16.04 system here. Installa...