One of my clients has a site where the pages are like product.asp?p=105&g=0 etc. I want to use a script on a custom 404 error page to make SEO URLS, like: product-name-p105g0.html What is the best way to present the user with the page so that it is readable by the search engines? Should I use a redirect or another method?
A) You can 301 redirect via .htaccess every URL you changed. This would require you to actually create the new web page(s) and directory structure. B) You can use mod_rewrite to use apache to rewrite URLs, this way you don't need to create new files and directories.