Thursday, 1 September 2016

html5 - Redirect old page to new page HTML

Old website like this:
www.example.com/oldnews.html




oldnews.html page changed to now newnews.html



New website like this:
www.example.com/newnews.html



When type any one
www.example.com/oldnews.html
automatically page redirected to new page =>




www.example.com/newnews.html



How to page redirect old page to new page?



Use an .htaccess file?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...