Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
188 views

Zend - Conditionaly reroute all pages

I'd like to be able to reroute or redirect all requests to my site to a specific page, if a conditional passes. I'm assuming this would have to be done somewhere in the bootstrap or with the ...
1
vote
1answer
75 views

Intercept web server request, modify, forward

The idea is simple but i am not quite sure what would be the best way to implement such a feature. What i basically wish to achieve is that all web requests that come in to my server are captured and ...
1
vote
6answers
463 views

Can the “internet” reroute connection requests between remote servers when one is down?

I operate an OLTP system that allows SSL connections over the internet at multiple sites. I would like to find an effective solution to how to transparently and automatically reroute transaction ...
0
votes
0answers
57 views

Reinjecting packets

I'm trying to reroute packets using libnetfilter. So far I can send the packets to NFQUEUE and can modify the packet using the libnetfilter API (From the INPUT table). However I don't have any idea on ...
0
votes
3answers
205 views

Rails: Redirect to page if condition

I want to redirect a user if a condition is true: class ApplicationController < ActionController::Base @offline = 'true' redirect_to :root if @offline = 'true' protect_from_forgery end ...
0
votes
1answer
54 views

Dynamic Url Rewriting additional questions

After reading serveral articles about url rewrite with aspnet on this forum I still have some unanswered questions. I understand the concept but havent seen examples of functionality I like to have. ...
0
votes
1answer
74 views

asp.net 3.5 url rerouting in VB ASP.net3.5

i want my user www.xyz.com/UserName to move it to www.xyz.com/default.aspx where i can get username is there any sample of vb this is good sample http://cstruter.com/blog/276 but it is C#
0
votes
0answers
94 views

Programatically reroute requests for subdomain to site in subdirectory

What is the best way to redirect requests in the given way: Requests to subdomains should be rerouted to a site in a subdirectory example: blog.myDomain.com/img/logo.jpg should be rerouted to ...
-2
votes
2answers
83 views

PHP rerouting temporarily store the previous output

I have output from a page (Uploader.php). Now i go to some other page and have a button on that page to reroute to this page (Uploader.php). I want the input of the page to be seen rather than ...