Top "Http-redirect" questions

When a URL is updated the server sends a HTTP redirect message with the updated URL.

Redirect Subdomain URL to another SubDomain in IIS

I need to redirect a "fake" sub domain to a real subdomain in IIS 7.5. The reason is that the marketing …

iis-7.5 url-redirection http-redirect
Redirect with compact value in laravel

Route : Route::get('merchantTrans/{id}','MerchantController@merchant'); Merchant Controller : public function merchant($id){ $merchant = Merchant::whereId($id)->…

laravel laravel-5.6 http-redirect
Why does this cause an infinite request loop?

Earlier today, I was helping someone with an .htaccess use case, and came up with a solution that works but …

.htaccess http-redirect
Redirect NON-www to www for https

I've the following redirect RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{…

.htaccess redirect https http-redirect no-www
Sending info with a HTTP redirect that the browser should send to the redirected location?

Is this possible.. for example, imagine I respond to a request with a 302 (or 303), and I inform the browser to …

http http-headers http-redirect
how to get referrer from a redirected url

I have an url domain.com/a which redirects to domain.com/controller/action/a . How do I get the …

ruby-on-rails ruby-on-rails-3 http-referer http-redirect
What is the maximum number of HTTP redirections allowed by all major browsers?

I am designing a web site, spread across many servers, and there are pages where I need up to chain …

web max http-redirect
ASP HttpWebRequest and Redirect

OK, I have a client doing a POST to a server with some data. The server receives the post, and …

c# asp.net http web-scraping http-redirect
Pass arguments using the HttpResponseRedirect in Django

I am trying to pass some information to my index page(index.html) from views.py. One passed, I need …

django redirect backend http-redirect