Quote:
Originally Posted by Dean C
Off the top of my head, I can't think of an easy way to redirect the old URLs to the new ones. This method uses .htaccess to redirect the new URLs and spoof the content of the old one.
|
Without reading the dry apache manual, I don't know an easy way on top of my head either.
You can also do it at script level, eg.:
Add an additional parameter to the Rewriterules for the URLs matched. eg.
RewriteRule ^f([0-9]+)-([A-Za-z0-9\-]+)\.html$ forumdisplay.php?f=$1&seourl=1 [L]
This way the new url will provide $_GET['seourl'] == 1 to the script.
If !isset ($_GET['seourl']), then
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://site/new_seo_url");