Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

So we've redone our website. Now I want to make sure all the redirects are going to the correct place. What I want to do is request the old URL and see if the server gives a 301 code with the correct new url.

I found Is it possible to get the redirected URL?, but that didn't seem to have the answer. My script:

use LWP; my $url = "oldurl"; my $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(GET => $url); my $res = $ua->request($req); print $res->status_line;

Now running the above code, it seems to realize the oldurl is redirected and pulls the new url and then gives me a 200 OK for the status line. I need to figure out how to get the 301 status from the url I gave it and not the new url it seems to pull from. Can someone help me?

Thanks in advance.

Brief Update: I know the url in question is being redirected b/c of this:

[xorl@xorlsbox ~/tools]$telnet ourdomainname 80 Trying xxx.xxx.xxx.xxx... Connected to ourdomainanme (xxx.xxx.xxx.xxx). Escape character is '^]'. GET /olddir HTTP/1.1 host: ourdomainname HTTP/1.1 301 Moved Permanently Date: Mon, 10 Aug 2009 17:18:45 GMT Server: Apache/2.0.52 (Red Hat) Accept-Ranges: bytes Set-Cookie: PHPSESSID=c100bc24fda84639acb995ae36a4f8c4; path=/ Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre- +check=0 Pragma: no-cache Set-Cookie: PHPSESSID=17c937ef60bcd4d587ba9f662384292e; path=/ Set-Cookie: PHPSESSID=66db955db7d2e6987d235d8327b0abee; path=/ Location: /somecrazy/new/location/here/ Content-Length: 0 Content-Type: text/html; charset=utf-8 Connection closed by foreign host.
Update 2: Trying WWW::Mechanize now. Will post results. Update 3: WWW::Mechanize worked although the redirect_ok[0] solution did not. Here's the relevant code:
my $mech = WWW::Mechanize->new(); $mech->requests_redirectable([]); $mech->get($url); print $mech->response->code . " " . $mech->response->header("Locatio +n");

In reply to Get redirected URL by xorl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-04-23 09:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found