Hi all, I am not overly experienced in ASP, so bear with me. I have 10 pages in a section that are all "generated" by an ASP file. I have just moved the site to wordpress, however I want to set up a 301 redirect on the old pages to the new ones in the blog. There is no universal naming convention I can really use - I want to redirect each individual page to another individual page. Any help on how to do this? Thanks
<% Response.Status = "301 Moved Permanently" Response.AddHeader "Location", "http://www.domain.com/new-folder/new-filename.asp" Response.End %> Code (markup):
If you're not running asp anymore, you need to do the redirects from within wordpress, which is php, which is Apache. Chances are you'll do it using mod_rewrite in the .htaccess file.