301 static page redirection

If I want to redirect 301 (SEO required) from old static pages to new static pages, what should I do?

I search on Google and find that it cannot be set inside a static page (meta tag) for 301 redirects.

My server is Netscape Enterprise.

Thanks.

+3
source share
3 answers

This is a list of how to do this in several different environments, how-to-redirect-a-webpage . Unfortunately, not Netscape Enterprise, but perhaps this may give you a clue. It looks at how to redirect an html file.

, 301 , Netscape Enterprise Server, , 301 .

+1

, 301.

, . JSP:

<%
response.setStatus(301);
response.setHeader( "Location", "http://www.newpage.com" );
response.setHeader( "Connection", "close" );
%> 
0

I'm not sure about Netscape Enterprise, but on most web servers (at least in IIS) you can configure redirects (both 301 and 302) for static files within the web server administration area, that is, not within itself file. I assume Netscape Enterprise will offer a similar feature.

0
source

Source: https://habr.com/ru/post/1705010/


All Articles