For many reasons, the space of many friends does not support FSO,
In addition, when a large number of pages generate static pages, a large amount of space is occupied,
It is inconvenient to modify the style,
Therefore, dynamic pages have the benefits of dynamic pages,
However, our webmaster hopes that all pages are static pages.
Because static pages are easily favored by search engines,
So I want to use Asp to implement false static obfuscation for search engines,
For example, we want to access view. asp? Id = xxxx
Jump from a connection
<A href = view. asp? Id = <% = xxxx %>. html> How to Implement false static data </a>
Add simple code to View. asp.
Copy codeThe Code is as follows: <%
Dim id
Id = replace (request ("id"), ". html ","")
%>
In fact, this is a very simple time. Why did we never think of it before,
Why should all pages be static?
In my personal Blog, article system, and news system, I think this application is more necessary ..