I changed some file names on my website and now I want to do the “301 Permanently Moved” redirect from old files to new ones.
The problem is that my website is made completely static by html pages and all 301 redirect tutorials describe how to do this in PHP, ASP, htaccess, etc. I would like to write a redirect directly to the old html files, is this possible? Or do I need to contact my web provider and solve the server redirect problem?
The only thing I know about the server is that it works on Windows and I have no knowledge of the server.
EDIT: My web hosting uses Microsoft IIS 7.0, so I assume using .htaccess is not possible here?
EDIT # 2: only now my server administrator wrote to me that even if I use only static HTML pages, I can still use the web.config file to redirect individual html files. It is very nice.
source
share