redirect

UrlEncodeUnicode and browser navigation errors

I want to redirect a request to some URL that may or may not contain non-ascii characters (e.g. german umlauts). Doing this with the relevant part of the URL: var url = HttpUtility.UrlEncodeUnicode("öäü.pdf"); // -> "%u00f6%u00e4%u00fc.pdf" and then issuing the redirect: Response.Redirect(url, ...); will not produce the desired be...

PHP: Can CURL follow meta redirects

Hi, CURL can follow header redirects with the use of CURLOPT_FOLLOWLOCATION but is it possible to follow meta refresh redirects? Thanks ...

Apache mod_rewrite - rewriting from subdomain to main domain

Hi, I want to redirect a url abc.xyz.com/123 to xyz.com. So the file that will be accessed will be index.php of xyz.com. That index.php should have available to it both abc and 123 (so 123 will be $_SERVER['PHP_SELF'], and abc will come out of $_SERVER['HTTP_HOST']) to enable appropriate processing. abc.xyz.com already goes to xyz.com ...

Apache mod-rewrite for shorter urls

...

WinMo or J2ME - Redirect different callers (from list) to different number (automatic swithboard?)

I have a lot of telemarketers calling me around the clock and I would like to return the favor.. Is there a way I can set up so that if number1 calls it will be redirected to number2, and if number2 calls it will be directed to number1. I will be happy to know I have caused some confusion.. unfortunately I will not be able to listen i...

htaccess redirect problem

I have the following redirects in my htaccess file Redirect 301 /communityed/index.htm http://www.domain.com/community_education Redirect 301 /communityed http://www.domain.com/community_education Redirect 301 /communityed/visit/index.htm http://www.domain.com/directions/ Red...

How to redirect in PHP

I wrote <? header("Location:http://example.com"); ?> but Redirect is not occured. How to redirect? But I do not have authority to edit php.ini So safe_mode is on in php.ini ...

mod_alias subdirectory replacement

I am using RewriteMatch to redirect all traffic from subdir1 to subdir2, while keeping all other parts of the url the same. So for instance, http://www.mydomain.com/subdir1/ would redirect to http://www.mydomain.com/subdir2/ I am using this rule: RedirectMatch 302 /subdir1/.* /subdir2/$1 which works for the url http://www.m...

How to redirect stdout and stderr from csh script.

For the following script install.csh: #!/bin/csh -f tar -zxf Python-3.1.1.tgz cd Python-3.1.1 ./configure make make install cd .. rm -rf Python-3.1.1 Intended use: ./install.csh |& tee install.log How can I change the script so that I still get a install.log and the output on console without asking the user to do the redirecting...

Time sensitive webpage access.

Is it possible to create a page that redirects to a private page if a correct time sensitive variable is passed? Ex: http://www.mysite.com/redirectpage.aspx?code=0912042400 The code value is a year-month-day-time combination that must fall withing some time window (15 min, 30 min etc) based on the server's time. The redirectpage would...

redirecting input to an executable from Excel VBA

How do you redirect input to an executable from inside VBA? Specifically, why does the code below not work? ChDir theRightDirectory Set WshShell = VBA.CreateObject("WScript.Shell") WshShell.Run "runme < start.txt", 1, True Or RetVal = Shell("runme < start.txt", vbNormalFocus) runme.exe does start up all right, but the input is n...

Using Post when doing a sendRedirect

Hi All, I have a requirement that a jsf page needs to be launched from a custom thin client in user browser (thin client does a http post). Since the jsf page may be invoked multiple times, I use a jsp to redirect to the jsf page with params on url. In jsp I do a session invalidation. The jsp code is below: <!DOCTYPE HTML PUBLIC "-//W3...

PHP uppercase to lowercase rewrite optimization?

I am using this PHP code to redirect any form of UPPERCASE in URI's to lowercase. There are three exceptions: if the URI includes either "adminpanel" or "search" there is no redirect, also if it already is lowercase there is no redirect Do you see any way to improve the function in PHP? $trailed = $_SERVER['REQUEST_URI']; $pos1 = strpo...

.htaccess Multiple redirects

Hello, this is my directory structure /home /template /classifieds /listings I want to hide /template and want to show all files under template on home. like /home/template/home.php should be www.example.com/home.php or /home/template/style.css should be www.example.com/style.css And Someone trying to access example.com/t...

301 redirection help on wordpress

Hello all friends, I'm searching for a 301 redirect rules in .htaccess for the last one week. I have visited many similar pages here too. But all are not working for me. So I'm asking help from masters like you. I'm using wordpress blogging platform. Before I was using Joomla and that time so many 404 errors was there on my website. T...

How can I change the ASP.Net MVC Login Redirect based on role?

I have the following code I've typed into the Account Controller in my MVC project and I am in both the administrator and manager roles. When I log in I get redirected back to my home index instead of being redirected to my AdminApp index. Any ideas where I'm going wrong in my code? [AcceptVerbs(HttpVerbs.Post)] [System.Diagnostic...

Redirect htaccess Based On Partial Folder Name

I have a set of dated folders I want to move into one container folder. That is 20011104 20011008 will now be in archive/20011104 archive/20011104 is there any way to htaccess redirect these in a few lines, rather than one redirect for each. There are hundreds. Is it possible to do a wildcard like 200* such that all such requests get...

ASP.NET URL redirection

I want, when I type http://localhost/Admin, to take me to the page http://localhost/Something/Login.aspx. How can I do this? ...

redirected cout -> std::stringstream, not seeing EOL

Hi all, I've read a bunch of posts regarding redirecting std::cout to stringstreams, but I'm having problem reading the redirected string. std::stringstream redirectStream; std::cout.rdbuf( redirectStream.rdbuf() ); std::cout << "Hello1\n"; std::cout << "Hello2\n"; while(std::getline(redirectStream, str)) { // This does not work - ...

Render to response to a redirected url in Django

In a form submission scenario, form is post to "/submit". I want to redirect user to "/sucess" on success and pass render some message to a template at new url. How to do this in Django? render_to_response doesn't do redirect and HttpResponseRedirect doesn't do template rendering. ...