For many reasons, many friends’ spaces do not support FSO.
Also, when a large number of pages generate static pages, it takes up a lot of space.
Also, it is inconvenient to modify the style.
Therefore, dynamic pages still have the benefits of dynamic pages.
But our webmasters all hope that all are static pages
Because static pages are easily favored by search engines,
So I want to use Asp to implement false statics to fool search engines.
For example, we want to visit view.asp?id=xxxx
Jump from a connection
<ahref=view.asp?id=<%=xxxx%>.html>How to implement false static</a>
Just add simple code to View.asp
The code copy is as follows:
<%
dimid
id=replace(request("id"),".html","")
%>
Actually, this is a very simple time, why didn't we think of using it before?
Why do all pages require static?
In today's personal blogs, article systems, and news systems, I think this application is more necessary. .