redirect

Get hold of redirect url with Java org.apache.http.client.

Hi Experts! I need help with figuring out how to get hold of the redirect after I make a post to the server. First, I need to do a get to obtain some cookies from the server. Then I perform a post with the cookies and additional parameters. The server then answers with a 302 redirect. How do I get the url for that redirect? Code looks...

PHP/CURL: Trying to do a remote login with no success.

Hello, I am trying to login to a system (which happens to be using the SquirrelMail client) using CURL and I'm having trouble. Here is my relevant PHP code: $handle = curl_init(); curl_setopt($handle, CURLOPT_FOLLOWLOCATION, true); curl_setopt($handle, CURLOPT_URL, $url); curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1); curl_setopt($h...

Subtle htaccess problem. I am going insane.

I want to have my primary domain be hosted from a subdirectory (have completed this step somewhat), i.e. when someone types in www.example.com/news behind the scenes it will go to www.example.com/subdirectory/news but will still show up as www.example.com/news. I have used the following bluehost code to accomplish this: RewriteEngine o...

how to rewrite search[] to something else with htaccess

I have created a search form with get method. But when the url looks like this search.php?search[] or search?search[] (mod_rewrite) then I get a sql fattal error. It's passing an array and I want to avoid that problem. my question is how do I redirect a person from that url to search.php ...

Send a location hash through a referrer

Hi. I have a page where in Javascript I add to the location hash something like: location.hash = "initial_source=previous_referrer". Afterwards a window.location is done in order to redirect. However the receiver gets the referrer in his request without the hash (#) part. Is it possible to somehow modify the URL in the initial page...

Htaccess redirect

Does anyone have a simple way of rdirected in .htaccess all pages that were once .asp to now be .php. For example index.asp is now index.php etc. Server is apache. ...

.htaccess can't redirect .pl files.

Has anyone had an issue where you try and do a redirect of a .pl file and that file just shows up as forbidden? Here is an example of what I'm trying to do: (http://www.oldsite.com/folder/sample.pl) needs to redirect to... (http://www.newsite.com/newpage/) Here is what I have put in the .htaccess file which is located in folder on the...

Session values null after redirect except when running in VS Debug mode

I have an ASP.NET web application that takes user input across several forms. Sort of like a wizard. On the first form, the user enters information then clicks the "Next" button. In the Click event of the button I save some information to the Session object (via Properties in the Master page). I then Redirect to the next page. Here ...

Redirecting URL with variable in Zend Framework

Whats the recommended method for redirecting with variables in Zend Framework? Lets say we have an action like this within a controller: public function newAction() { $form = new Form_ApplicationForm(); if($this->_request->isPost()){ $data = $_POST; if($form->isValid($data)){ ...

Sometimes redirecting failed mysteriously in PHP?

@header('Location: ' . $uri); But it only seldom happens,what's the problem? ...

Prevent downloading of a http content body

Hi. Currently I've got a web app that retrieves the URL of a mp3 on an external server, but to conserve data I'd like to check first that the page my server is retrieving is actually a redirect, not the actual content (so I can grab the URL of the mp3 and NOT the actual mp3 itself. The external PHP script requires that json data is ...

Redirect asp.net mvc page from business logic class

I am calling a static method within my business logic layer that, for purposes I won't mention here, needs to do the redirecting itself rather returning information back to the controller to do the redirect. I figure I need to use the HttpContext object but am struggling with creating the route. I can't simply do context.Response.Redir...

Redirect root url to somewhere else in Rails application

I have routes like this: map.namespace 'prepayments', :path_prefix => '/:locale/prepayments' do |prepayment| prepayment.root :controller => 'login', :namespace => 'prepayments' ... end map.redirect '/', :controller => 'prepayments/login' # this is not working # I tried also map.root :controller => 'prepayments/login' What I wou...

Redirect asp.net mvc if custom exception is thrown...

I need to globally redirect my users if a custom error is thrown in my application. I have tried putting some logic into my global.asax file to search for my custom error and if it's thrown, perform a redirect, but my application never hits my global.asax method. It keeps giving me an error that says my exception was unhandled by user ...

404 error code redirect back to homepage

I have some broken links on my site, and will keep having new ones on regular basis. How do i write a centralized code in web.config or something for 404 then redirect to home page? I am using aspx, vb.net and IIS7 ...

What's the difference between a 302 and a 307 redirect?

What's the difference between a 302 FOUND and a 307 TEMPORARY REDIRECT HTTP response? The w3 spec seems to indicate that they're both used for temporary redirects, and neither can be cached unless the response specifically allows it. Thanks! ...

htaccess 301 redirect rule

Hi looking for help making a 301 redirect for: www.domain.com/word/* to www.domain.com/* Thanks. ...

Under Construction page For Website Without Redirect

Hi! I wanted to know if there is some way to change something simple, such as a htaccess file, a js file, or a php file, and then all of the webpages on my site will show an under construction page. I do not really care all that much if the user has to be redirected, but I want the origonal url of the page to be displayed in the address ...

URL Redirects in ASP.NET

Ok, wierd problem I cant figure out. Hopefully someone where can. I have inherited a site that was developed with a very over architedcted Content Management System. I am having problems now with the redirection functionality built into it. This is on a dedicated Windows 2003 server running ASP.NET 3.5 sp 1. The redirects are stored in ...

jQuery AJAX Redirection problem

Hello please consider this: On page A I have a link that takes you to page B when JS is off, but when JS is on, I want to replace content on current page with content from the page B. Pages A and B are in fact the same script that is able to tell AJAX calls from regular ones and serve the content appropriately. Everything works fine, ...