0
votes
4answers
75 views
What is wrong with this JavaScript code?
self.location = 'cache:' + self.location
I want to redirect from "[URL]" to "cache:[URL]". I just want this code to work in Chrome browser.
0
votes
2answers
32 views
Detecting an URL that redirects to another location
I need to detect when an URL redirects the browser to another location, including javascript redirects. I thought of using an actual web browser engine with javascript support to a …
0
votes
1answer
13 views
Any other way to redirect a connection to custom ip/port?
Hi,
I need to redirect a connection from a game to my custom ip/port. I know that it can be done via detours, or modifying the host file, just wondering if there is any other way? …
5
votes
2answers
89 views
C++ Redirect Output
Is there a way to redirect c++ output inside the code?
The situation is this, I am using some external .cpp and .h files which use printf's to put warnings to console. I wish to re …
1
vote
1answer
30 views
Passing parameters using a Zend Framework redirect without appending to URL
In our application, we have certain scenarios where we'd like to perform a redirect and pass a long string to the next controller/action. I'm familiar with both of these:
$this-&g …
0
votes
1answer
12 views
Sharepoint Redirecting Users or Groups from a page to another.
Hello ,
What I am tring to do is, when people comes to that page:
http://server:26521/MY%5FPortal/service/default.aspx
I want them to be redirected to that page
http://server:2 …
2
votes
4answers
56 views
Redirect output to a bash array
I have a file containing the string
ipAddress=10.78.90.137;10.78.90.149
I'd like to place these two IP addresses in a bash array. To achieve that I tried the following:
n=$(gre …
0
votes
0answers
20 views
Ruby W3C_Validators and Proxy
Hi, I'm trying to use the w3c_validators Ruby gem and I'm inside a proxy. So I wrote up a monkey patch that overrides the send_request method (validators.rb) and it seems to take …
0
votes
1answer
30 views
.htaccess redirect to a directory
This is a very silly question but I am pretty weak in htaccess.
I want all files (php, css, javascripts and images) located at http://localhost/template/* to point to http://local …
0
votes
1answer
19 views
Nginx 301 redirect inc. set cookie
Hi, what I'm looking for is the ability for nginx to detect that a url has the query string variable cid.
for example www.adomain.com/froggy?cid=12&as=false (query string can …
5
votes
4answers
76 views
Response.Redirect HTTP status code
Why is it that ASP/ASP.NET Response.Redirect uses a HTTP-302 status code ("Moved Temporarily") even though in most cases a HTTP-301 status code ("Moved Permanently") would be more …
0
votes
1answer
38 views
Django Admin redirects not working …
I am using the latest checkout of the django trunk - when I am in the admin on the "change" page for an object/item, there is a nice little link that says "view on site".
The li …
1
vote
2answers
44 views
How do I redirect values from a PHP page to another?
I'm trying to post XML data from a PHP page to another (not necessarily PHP-based) one without a form post. Is it possible to say do a POST via the header() function? If so, how?
0
votes
1answer
48 views
Redirect only HTML files?
Part One
I want to .htaccess redirect all HTML files to the home page. I looked at this guy's question (http://bit.ly/3l9K86), and wrote this code:
RewriteCond %{HTTP_HOST} ^pand …
2
votes
1answer
39 views
How to use redirect_to to a non-Rails URL with query params?
We just had an existing use of redirect_to break due to a Rails upgrade, and it led to a question. I've been experimenting, and I don't seem to find a way to use redirect_to to sen …
