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)
introduction Today I learned how to connect to th...
1. Parent components can use props to pass data t...
Many times, we expect the query result to be at m...
When updating a record in MySQL, the syntax is co...
js date time format Convert the date and time to ...
Preface I have read many blogs and heard many peo...
To export MySQL query results to csv , you usuall...
1. Install dependency packages yum -y install gcc...
MySQL CURDATE Function Introduction If used in a ...
Preface This article records a problem I encounte...
If you forget your MySQL login password, the solu...
As a backend programmer, you deal with Linux in m...
Table of contents mysql master-slave replication ...
This article records the specific method of insta...
I am using the Ubuntu 16.04 system here. Installa...