Forum Moderators: open
We specifically want to turn URLS like this
/articleID=3456
to
/A_Page_Name
where "page Name" is stored in the database as "A_Page_Name" already.
Does anyone know if this would be possible with just classic ASP code?
you can do this with 404 rewriting without the ISAPI filter or similar.
You'll need to point your 404 page in IIS to a script eg rewrite.asp. Then in rewrite.asp do a database lookup on the requested url (articleID=3456), pull your content and redirect (maybe with a 301 header).
Please note I've only done this with php on IIS and not classic asp. However I think the theory should hold. Googling for IIS custom 404 redirect may provide some further advice.
HTH
Cheers