Skip to content
Advertisement

get the last redirected url in curl php

Hi I know its a very common topic on StackOverFlow. I have already spent my entire week to search it out.

I have a url : abc.com/default.asp?strSearch=19875379

this further redirect to this url: abc.com/default.asp?catid={170D4F36-39F9-4C48-88EB-CFC8DDF1F531}&details_type=1&itemid={49F6A281-8735-4B74-A170-B6110AF6CC2D}

I have made my effort to get the final url in my php code using Curl but can’t make it.

here is my code:

JavaScript

it gives me url “abc.com/default.asp?strSearch=19875379” instead of this url “abc.com/default.asp?catid={170D4F36-39F9-4C48-88EB-CFC8DDF1F531}&details_type=1&itemid={49F6A281-8735-4B74-A170-B6110AF6CC2D}”

Thanks in advance for your kind help 🙂

Advertisement

Answer

Thank you everyone for helping me in my situation.

Actually I want to develop a scraper in php for ikea website used in Israel (in Hebrew). After putting a lot of hours I recognize that there is no server side redirection in url which I put to get the redirected url. It may be javascript redirection. I have now implemented the below code and it works for me.

JavaScript

Thanks again everyone 🙂

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement