active questions tagged redirection - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T08:18:41Zhttp://stackoverflow.com/feeds/tag/redirectionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/455544/how-to-load-program-reading-stdin-and-taking-parameters-in-gdb2How to load program reading stdin and taking parameters in gdb?vinc4562009-01-18T17:36:20Z2009-11-30T04:20:50Z
<blockquote>
<p>I have a program that takes input from
stdin and also takes some parameters
from command line. It looks like this:</p>
<p>cat input.txt > myprogram -path
"/home/user/work"</p>
<p>I try to debug the code with gdb
inside emacs, by M-x gdb, I try to
load the program with the command:</p>
<p>gdb cat input.txt > myprogram -path
"/home/user/work"</p>
<p>However, gdb does not like it.</p>
</blockquote>
<p>Question cribbed from <a href="http://answers.yahoo.com/question/index?qid=20071102162016AASqPeB" rel="nofollow">here</a>.
Unfortunately I don't understand the solution and am not sure what to do beyond compiling with the -g option and running the command M-x gdb. </p>
http://stackoverflow.com/questions/1308484/cron-job-stderr-to-email-and-log-file0Cron job stderr to email AND log file?Steph2009-08-20T20:02:42Z2009-11-29T15:34:26Z
<p>I have a cron job:</p>
<pre><code>$SP_s/StartDailyS1.sh >$LP_s/MirrorLogS1.txt
</code></pre>
<p>Where <code>SP_s</code> is the path to the script and <code>LP_s</code> is the path for the log file. This sends stdout to the log file and stderr to my email. </p>
<p>How do I?:<br />
1) send both stdout AND stderr to the logfile,<br />
2) AND send stderr to email</p>
<p>or to put it another way: stderr to both the logfile and the email, and stdout only to the logfile.</p>
<p>UPDATE:
None of the answers I've gotten so far either follow the criteria I set out or seem suited to a CRON job.</p>
<p>I saw this, which is intended to "send the STDOUT and STDERR from a command to one file, and then just STDERR to another file" (posted by zazzybob on unix.com), which seems close to what I want to do and I was wondering if it would inspire someone more clever than I: </p>
<pre><code>(( my_command 3>&1 1>&2 2>&3 ) | tee error_only.log ) > all.log 2>&1
</code></pre>
<p>I want cron to send STDERR to email rather than 'another file'.</p>
http://stackoverflow.com/questions/1790367/htaccess-404-error-redirection-for-cat-sub-html-like-urls0htaccess 404 error redirection for /cat/sub/.html like urlsartmania2009-11-24T14:18:08Z2009-11-24T16:58:02Z
<p>Hi friends,</p>
<p>How can I redirect such link (below) to 404 error page?</p>
<blockquote>
<p><a href="http://www.blabla.com/category/sub/.html" rel="nofollow">http://www.blabla.com/category/sub/.html</a></p>
</blockquote>
<p>I generate a SEO friendly links, normally products has url like blabla.com/category/sub/product.html </p>
<p><em>the page doesnt give any error. it just display blank content. I mean i can see static texts like CATEGORY NAME header and but there is no dynamic categoryname next to that, because of url is wrong and cant get record from db. page doesnt display dynamic contents, but display static contents</em></p>
<p>Appreciate helps!! thanks</p>
http://stackoverflow.com/questions/1780103/how-do-i-iis-redirect-on-a-different-port-for-tortoise-svn0How do I IIS redirect on a different port for tortoise svnSamuel2009-11-22T21:45:32Z2009-11-23T11:29:09Z
<p>I installed VisualSVN on port 8080. So I can access it with <a href="http://www.mysite.com:8080" rel="nofollow">http://www.mysite.com:8080</a> and everything works fine.</p>
<p>I now want to access the svn using <a href="http://svn.mysite.com" rel="nofollow">http://svn.mysite.com</a> instead of using port 8080. So I created a HTTP Redirect in IIS 7 for site svn.mysite.com (which is on port 80) to <a href="http://www.mysite.com:8080" rel="nofollow">http://www.mysite.com:8080</a> (using permanent redirect).</p>
<p>This is working when I access the svn via a browser, however from within tortoise svn when I do Repository Browser, I see the following message:</p>
<p><strong>Repository moved permanently to.... Please Relocate</strong></p>
<p>Any ideas how to do this correctly?</p>
http://stackoverflow.com/questions/1773455/detect-dns-redirect-in-net0Detect DNS Redirect in .NETZach Johnson2009-11-20T21:49:26Z2009-11-20T22:00:25Z
<p>In a .NET application I am writing, I need to detect whether a particular URL is available. For the average user with a default DNS server, an invalid address would end up throwing a <code>WebException</code>. However, at home I am using OpenDNS. When I request an invalid address at home, the automatic OpenDNS redirect makes .NET believe the request succeeded. How can I detect when the DNS server is not giving me the address I requested?</p>
<p>Here's some of the code:</p>
<pre><code>HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://...");
request.AllowAutoRedirect = false;
try
{
WebResponse response = request.GetResponse();
using (Stream stream = response.GetResponseStream())
{
// Do work
...
}
}
catch (WebException ex)
{
// Handle normal errors
...
}
</code></pre>
http://stackoverflow.com/questions/1769027/sharepoint-redirecting-users-or-groups-from-a-page-to-another0Sharepoint Redirecting Users or Groups from a page to another. stckvrflw2009-11-20T08:23:45Z2009-11-20T09:42:59Z
<p>Hello ,</p>
<p>What I am tring to do is, when people comes to that page:</p>
<p><a href="http://server:26521/MY%5FPortal/service/default.aspx" rel="nofollow">http://server:26521/MY%5FPortal/service/default.aspx</a></p>
<p>I want them to be redirected to that page</p>
<p><a href="http://server:26521/default.aspx" rel="nofollow">http://server:26521/default.aspx</a></p>
<p>Depending on their User name Or User Group. </p>
<p>Thanks for helps. </p>
http://stackoverflow.com/questions/1738912/redirect-window-of-command-line-tool-to-your-app-windows0Redirect window of command line tool to your app (Windows)dribler2009-11-15T21:30:00Z2009-11-18T21:53:55Z
<p>Hello,</p>
<p>is there a way (on Windows XP+) to redirect the output of a window created by a process created with e.g. CreateProcess to a window of your own program?</p>
<p>I'd like to make a nicer GUI for ffplay.exe which is an open source video player. It is a command line tool, which opens a simple window in which it plays back the video. Can I "capture" this window and display the output in my own program somehow?</p>
<p>Thanks for any hints you can provide.</p>
http://stackoverflow.com/questions/1218933/can-i-redirect-the-stdout-in-python-into-some-sort-of-string-buffer2Can I redirect the stdout in python into some sort of string buffer?Avihu Turzion2009-08-02T13:47:50Z2009-11-17T07:13:04Z
<p>I'm using python's <code>ftplib</code> to write a small FTP client, but some of the functions in the package don't return string output, but print to <code>stdout</code>. I want to redirect <code>stdout</code> to an object which I'll be able to read the output from.</p>
<p>I know <code>stdout</code> can be redirected into any regular file with:</p>
<pre><code>stdout = open("file", "a")
</code></pre>
<p>But I prefer a method that doesn't uses the local drive.</p>
<p>I'm looking for something like the <code>BufferedReader</code> in Java that can be used to wrap a buffer into a stream.</p>
http://stackoverflow.com/questions/1739531/education-how-much-how-little0Education.. how much how little? [closed]Mike2009-11-16T00:50:58Z2009-11-16T00:50:58Z
<p>Hi Everyone,</p>
<p>So a little background. Started out in construction and completed my apprenticeship over a 6 year period. Got married, bought 2 houses and decided I wanted to switch to computers. I started working on a certificate program through a university about 18 months ago and am just coming up on completion of it. I've also been employed as a software developer for the past 10 months with no end in site.</p>
<p>So my question.. Should I just concentrate on work and stick with the cert? By doing this I get to enjoy more life on the weekends and evenings with my wife..</p>
<p>OR</p>
<p>Do I push another three years, 40,000 dollars and probably 5 years time to complete the bachelors?</p>
<p>Whats your thoughts everyone? Hoping to hear form people with lots of experience..</p>
<p>BTW I've gotten to par with what I was making as a ticketed carpetner now so the money isn't bad at the moment.</p>
<p>Thanks,
Nalid</p>
http://stackoverflow.com/questions/1700845/regular-expression-with-redirectmatch-does-anything0Regular expression with RedirectMatch does anythingDavid Hoareau2009-11-09T12:59:44Z2009-11-09T16:26:38Z
<p>Hi
I use .htaccess to perform redirection.
Here the line</p>
<pre><code>RedirectMatch permanent .*\?langue=([\w]{2}).*id_([\w]+)=([1-9]+) ***[protocol]***://myserver/rootContext/action?pagename=dir1/dir2/dir3/Redirect&type=$2&id=$3&lang=$1
</code></pre>
<p>Here my inital url:</p>
<pre><code>***[protocol]***://localhost/adir/anotherDir/anotherDirAgian/oneMore/apage.php?langue=fr&id_dossier=261
</code></pre>
<p>This regular expression is correct, but at least, no redirection is done.
With silmple regular expression and simple url it works correctly.</p>
<p>Does somebody can help?
Thanks
David Hoareau</p>
http://stackoverflow.com/questions/1537635/iis-server-redirect-locations1IIS server redirect locations...KoolKabin2009-10-08T12:58:38Z2009-11-04T18:45:37Z
<p>hi,</p>
<p>I got a asp site hosted in a iis server. In the server there is a virtual folder products and whenever a url like xyz.com/products/abc_11.asp is provided it is forwared to xyz.com/product.asp?id=11 page.</p>
<p>I would like to know from where we can change that settings? </p>
<p>These settings or tasks can be done from where?</p>
<p>Thnx</p>
http://stackoverflow.com/questions/1674020/using-file-contents-as-command-line-arguements-in-bash1Using file contents as command line arguements in BASHJamie2009-11-04T14:18:19Z2009-11-04T16:09:44Z
<p>I'd like to know how to use the contents of a file as command line arguments, but am struggling with syntax.</p>
<p>Say I've got the following:</p>
<pre><code># cat > arglist
src/file1 dst/file1
src/file2 dst/file2
src/file3 dst/file3
</code></pre>
<p>How can I use the contents of each line in the <code>arglist</code> file as arguments to say, a <code>cp</code> command?</p>
http://stackoverflow.com/questions/768431/how-to-make-a-redirect-in-php4How to make a redirect in PHP?Sam2009-04-20T14:13:22Z2009-11-04T12:15:49Z
<p>Is it possible to redirect a user to a different page through the user of PHP?</p>
<p>Say the user goes to www.example.com/page.php and it I want to redirect them to www.example.com/index.php , how would I do so without the use of a meta refresh? Possible?</p>
<ul>
<li>This could even protect my pages from unauthorized users. :]</li>
</ul>
<p>Please help</p>
http://stackoverflow.com/questions/1670719/i-want-all-page-requests-to-point-to-a-single-page0I want all page requests to point to a single pagehighlander2009-11-03T23:01:56Z2009-11-03T23:13:12Z
<p>The wrinkle is that the pages being requested are aspx pages and they are no longer present. I want any request coming to the root domain (and any subdomain like www) to redirect to a single page in the root directory (namely index.html) I went into the IIS admin tool, selected the domain and tried to direct to a url (<a href="http://mydomain.com/index.html" rel="nofollow">http://mydomain.com/index.html</a>) but that caused index.html to be appended multiple times and resulted in an error.</p>
<p>What is the best way to do this, so that any http request ot hsi domain goes to the index.html page?</p>
<p>Thanks in advance.
Warren</p>
http://stackoverflow.com/questions/1647194/dns-file-mapping0DNS File MappingNickR2009-10-29T23:34:05Z2009-10-30T17:13:45Z
<p>Hi guys,</p>
<p>I'm trying to work out a feature for a Web application, but I'm a bit confused at this point. I was wondering if anyone can shed some light on the following scenario.</p>
<p>Say, my Web app is located at <b>domain1.com</b> and a users website is located at <b>domain2.com</b>. What I would like to allow is for the user to be able to map their domain to one of the files/pages on my server. So if someone accesses <b>domain2.com/files</b> then it will internally and transparently route to <b>domain1.com/files.aspx?domain=2</b> (notice the domain parameter).</p>
<p>I know this can be done with a simple file redirection (301 or 302) on the users server, but I would like to achieve this on the DNS level. How can I go about it?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1645107/capturing-the-error-stream-from-a-sed-command0Capturing the error stream from a sed commandRohit2009-10-29T16:54:31Z2009-10-29T18:16:31Z
<p>Hello,</p>
<p>How do I capture any error from a <code>sed</code> command into a file? Here is the <code>sed</code> command I am using:</p>
<pre><code> sed -e 's/'old_word'/'new_word'/' temp_file > output_file
</code></pre>
<p>Now, when everything goes well, modified contents from <code>temp_file</code> are captured in <code>output_file</code>. But let's say that <code>output_file</code> happens to be read only. In this case, instead of error being shown on screen , I would like it to be redirected to <code>error_file</code>. How can I do that? I tried adding <code>2> error_file</code> to the end of the above command but that did not work.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1629581/apache-modrewrite-question0Apache mod_rewrite questionLuixv2009-10-27T09:13:27Z2009-10-27T12:30:09Z
<p>Hi!</p>
<p>I have an application running under tomcat 6. In front of it I have
an apache server which is forwarding all requests. That is, the user "talks"
to the apache and not to tomcat. For some reasons the it is requested the
following: when the apache server receives a request of the form</p>
<pre><code>http://www.mydomain.com/myApp
</code></pre>
<p>then it has to be forwarded to <a href="http://www.mydomain.com/" rel="nofollow">http://www.mydomain.com/</a>$PREFIX/myApp</p>
<p>where $PREFIX is a POST parameter. This $PREFIX parameter is also available
as a COOKIE and as a extra header.
I didn't find a way using mod_rewrite for reading post parameters/cookies/headers.</p>
<p>Is this possible at all? If not, should I use another apache module/connector?</p>
<p>Thanks in advance.</p>
<p>Luis</p>
http://stackoverflow.com/questions/1627138/retrieving-stdin-after-using-the-redirection-operator2Retrieving stdin after using the redirection operator <zpconn2009-10-26T20:24:22Z2009-10-26T23:05:45Z
<p>For a programming assignment, we have the following requirements:</p>
<ol>
<li>It needs to be a command-line program written in C.</li>
<li>It needs to read text from a text document. However, we are to do this by using the Unix redirection operator < when running the program rather than having the program load the file itself. (So the program reads the text by pretending it's reading from stdin.)</li>
<li>After reading the data from the file, the program is to poll the user for some extra information before doing its job.</li>
</ol>
<p>After much research, I can't find a way to retrieve the "old" stdin in order to accomplish part (3). Does anybody know how or if this is even possible?</p>
<p>Technically part (3) is part of a bonus section, which the instructor probably didn't implement himself (it's very lengthy), so it's possible that this is not possible and it's an oversight on his part. However, I certainly don't want to jump to this conclusion.</p>
http://stackoverflow.com/questions/1525268/redirection-between-view-in-mvvm1Redirection Between View In MVVMNaresh Goradara2009-10-06T12:20:26Z2009-10-26T08:52:56Z
<p>I am using MVVM patern for developing my WPF application. It working fine for unrelated pages, means how to go in another view from one view. </p>
<p><strong>Eg:</strong>
I have one list page in which some records are coming from one ViewModel and another from another ViewModel, means I have two ViewModel form my single View. And now I want to display another View by some event.</p>
<p>I am using <strong>IsSelected</strong> property for notification of changes. <em>This mechanism works only upto when any action performed on same ViewModel</em>, what should I do for such senario.</p>
http://stackoverflow.com/questions/1399191/psexec-redirect-output-to-local-file0PSEXEC redirect output to local filesam2009-09-09T11:42:27Z2009-10-25T02:00:04Z
<p>I need the correct way to accomplish this via a vbscript.</p>
<p>This works fine from command prompt:</p>
<pre><code>psexec \\99.99.99.99 -u username -p password cmd.exe /c ver > output.txt
</code></pre>
<p>From the vbscript:</p>
<pre><code>sTempFile = objFSO.GetTempName
sCmd = "psexec \\" & sIP & " -u " & sDomain & "\" & sUser & " -p " & sPassword & " cmd /c ver > " & sTempFile
WSHShell.Run sCmd, 1, True
</code></pre>
<p>I always get a runtime error: File not found</p>
<p>Thanks,
Sam</p>
http://stackoverflow.com/questions/1594388/what-is-equivalent-code-for-window-location-in-jquery1What is equivalent code for window.location in jQuery?Sundar2009-10-20T12:51:35Z2009-10-20T13:02:58Z
<p>I am currently using window.location for client-side redirection in jQuery. Is there any equivalent syntax to do client-side redirection?</p>
http://stackoverflow.com/questions/1592859/how-to-supply-many-argv-and-outputredirection-with-one-bash-var0How to supply many argv and outputredirection with one bash var ?Galaxy2009-10-20T06:49:32Z2009-10-20T08:44:35Z
<p>In file a.lst:</p>
<pre><code>in1.a in1.b > out1.a 2> out1.b
in2.a in2.b > out2.a 2> out2.b
</code></pre>
<p>In do.sh:</p>
<pre><code>CLI=$(sed -n -e "1 p" a.lst)
perl a.pl $CLI
</code></pre>
<p>I want to run like <code>perl a.pl in1.a in1.b > out1.a 2> out1.b</code>, how can I make it work ?</p>
http://stackoverflow.com/questions/1581305/transferring-everything-from-one-domain-to-another0Transferring Everything from One Domain to AnotherBrandon Wang2009-10-17T03:12:52Z2009-10-17T03:46:13Z
<p>I want to move from one domain to another one that is shorter and (hopefully) easier to remember, but I also want the transition to be as seamless as possible.</p>
<p>I'm a coder so I know about 301 redirects and I intend to use them, but is there something easier than manually adding entries in my .htaccess file?</p>
<p>The website is static with the exception of the blog, which is under the /blog/ directory and powered by WordPress. I want it redirected to my new domain name. File and folder structures don't change. Isn't there some kind of wildcard thing for this?</p>
http://stackoverflow.com/questions/1573173/bash-script-passing-stdin-input-to-a-program-and-giving-control-back-to-user-inpu0BASH script passing stdin input to a program and giving control back to user inputMandoMando2009-10-15T15:37:20Z2009-10-15T15:41:21Z
<p>(I looked everywhere for this, perhaps my googling skill is off today)</p>
<p>I have a program that requires a handful of initialization cmds from stdin (and not through arguments). It'd be nice to move those commands into a script so when the script completes I can start keying the real work. So something like:</p>
<pre><code>cat initcmds.txt | myprogram.exe
</code></pre>
<p>the problem is that the program (child process) terminates after receiving EOF at the end of initcmds.txt. How do you do this? (Bash, Korn, cmd.exe, csh, all good)</p>
http://stackoverflow.com/questions/1564983/iis-isapiredirect-dll-does-not-redirect-correctly-the-post-requests-from-mobile0IIS isapi_redirect.dll does not redirect correctly the POST requests from mobile clientsRam2009-10-14T08:26:03Z2009-10-14T08:26:03Z
<p>When using the isapi_redirector.dll to redirect requests to tomcat, the redirector does not redirect the POST requests correctly when accessing using mobile phones. How do we fix this?</p>
http://stackoverflow.com/questions/1545619/can-i-capture-stdout-stderr-separately-and-maintain-original-order6Can I capture stdout/stderr separately and maintain original order?flashk2009-10-09T19:20:31Z2009-10-12T18:30:57Z
<p>I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red.</p>
<p>In order to accomplish this I create a separate pipe for stdout and stderr and use them in the STARTUPINFO structure when calling CreateProcess. I then launch a separate thread for each stdout/stderr handle that reads from the pipe and logs the output to a window.</p>
<p>This works fine in most cases. The problem I am having is that if the child process logs to stderr and stdout in quick succession, my app will sometimes display the output in the incorrect order. I'm assuming this is due to using two threads to read from each handle.</p>
<p>Is it possible to capture stdout and stderr in the original order they were written to, while being able to distinguish between the two?</p>
http://stackoverflow.com/questions/1551326/mod-rewrite-problem-1Mod Rewrite problemile2009-10-11T18:11:10Z2009-10-11T18:38:13Z
<p>.htacces</p>
<pre><code>Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^([a-zA-Z0-9_-]+)$ sinj.com.hr/index.php?var1=$1 [L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ sinj.com.hr/index.php?var1=$1&var2=$2 [L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ sinj.com.hr/index.php?var1=$1&var2=$2&var3=$3 [L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ sinj.com.hr/index.php?var1=$1&var2=$2&var3=$3&var4=$4 [L]
RewriteRule ^([a-zA-Z0-9_-]+)/$ sinj.com.hr/$1 [R=301,L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/$ sinj.com.hr/$1/$2 [R=301,L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/$ sinj.com.hr/$1/$2/$3 [R=301,L]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/$ sinj.com.hr/$1/$2/$3/$4 [R=301,L]
</code></pre>
<p>There is folder sinj.com.hr/administracija and when I try to access <a href="http://localhost/sinj.com.hr/administracija" rel="nofollow">http://localhost/sinj.com.hr/administracija</a> I am redirected to <a href="http://localhost/sinj.com.hr/administracija?var1=administracija" rel="nofollow">http://localhost/sinj.com.hr/administracija?var1=administracija</a>
What I would like is when user enters <a href="http://localhost/sinj.com.hr/administracija" rel="nofollow">http://localhost/sinj.com.hr/administracija</a> that he is redirected to <a href="http://localhost/sinj.com.hr/administracija/index.php" rel="nofollow">http://localhost/sinj.com.hr/administracija/index.php</a>. I tried to do this with header("Location:... ") but it always redirects me to <a href="http://localhost/sinj.com.hr/administracija?var1=administracija" rel="nofollow">http://localhost/sinj.com.hr/administracija?var1=administracija</a>. If folder administracija is renamed then header() function works. Any ideas how to solve this?</p>
<p>Thanks,
Ile</p>
http://stackoverflow.com/questions/1550997/c-createprocesswithloginw-redirecting-stdout0[C++] CreateProcessWithLoginW - Redirecting STDOUTChris T2009-10-11T15:47:21Z2009-10-11T17:41:55Z
<p>What I would like is to have the process start but have the input and output all be in the same console.</p>
<pre><code>if(CreateProcessWithLogonW(user,domain, pass, LOGON_WITH_PROFILE, NULL, cmd, 0, 0, 0, &sa, &pe))
{
printf("[~] Process spawned with PID %X\n", pe.dwProcessId);
}
else
{
printf("[!] Failed to create process. Error Code: %X\n", GetLastError());
}
</code></pre>
<p>When I use this code it creates a whole new window instead of having it in the same window. Is there a way to unset the "CREATE_NEW_CONSOLE" flag because even when I set it to 0 it still creates a new console.</p>
http://stackoverflow.com/questions/1526445/asp-net-webservice-http-redirect0ASP.NET Webservice HTTP RedirectTawani2009-10-06T15:44:42Z2009-10-07T12:59:45Z
<p>My website posts orders to partner sites using web services. Recently, one of our partners implemented load balancing on their servers and our web requests are failing because they get redirected to other URLs.</p>
<p>Normally when we test they pass because the URI is static but in production they fail because the requests get redirected.</p>
<p>e.g. redirecting from <a href="http://mysite.com/services/myservice.asmx" rel="nofollow">http://mysite.com/services/myservice.asmx</a> to <a href="http://subnet.mysite.com/services/myservice.asmx" rel="nofollow">http://subnet.mysite.com/services/myservice.asmx</a></p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1523654/how-to-disable-url-redirection-in-python-when-using-m2crypto-ssl0How to disable URL redirection in Python when using M2Crypto SSL?Bhargava2009-10-06T04:52:37Z2009-10-06T16:25:22Z
<p>This is what my code looks like:</p>
<pre><code>url_object = urlparse(url)
hostname = url_object.hostname
port = url_object.port
uri = url_object.path if url_object.path else '/'
ctx = SSL.Context()
if ctx.load_verify_locations(cafile='ca-bundle.crt') != 1: raise Exception("Could not load CA certificates.")
ctx.set_verify(SSL.verify_peer | SSL.verify_fail_if_no_peer_cert, depth=5)
c = httpslib.HTTPSConnection(hostname, port, ssl_context=ctx)
c.request('GET', uri)
data = c.getresponse().read()
c.close()
return data
</code></pre>
<p>How can I disable url redirection in this code? I am hoping there would be some way of setting this option on connection object 'c' in the above code.</p>
<p>Thanks in advance for the help.</p>