open-url
Hello,
I use open-url to open a web page from within a lisp application.
Occasionally, I find that the URL has changed, specifically to a general caterory of discontinued urls.
How can I algorithmically go through my application to find such changed URLs?
For example a function such as:
(defun find-discontinued-URLS (URL-in)
;; ouput as URL-out (a string) if the URL is redirected.
)
Sheldon