The reroute tag has no wiki summary.
0
votes
0answers
4 views
Reroute Internet traffic
I have a local webserver with a static public IP. My Internet provider which supplies my IP is very near to me (I am a university student living in a University dorm). I want to benchmark some ...
0
votes
0answers
17 views
C# Webform re-route if request doesn't contain specific string
I'm creating on a website using Webform, I'm encountering a problem and would like your help/ideas/solutions.
For some pages, I need to check if the query string contains a specific string, if this ...
1
vote
1answer
42 views
301 redirects and matching old maproutes to new ones
I have 2 websites an old one called www.old.com and a new one called www.new.com . The old url has a 301 permanent redirect to the new website, but the new website has a different maproute so ...
0
votes
2answers
44 views
asp.net webforms. redirect all page requests in absence of a certain session variable
Is it possible to reroute all page requests to the Default.aspx if a certain Session variable is not set? I want the users to go to the default page where they agree to terms and conditions. On ...
0
votes
2answers
19 views
Reroute all links on page to localhost
I am currently doing some minor re-work on a friend's site. I have downloaded what she has currently, but all of the links are absolute links, so whenever I navigate within the locally hosted site, I ...
0
votes
1answer
31 views
Rerouting http traffic in ASP.NET application
I would like to re-route traffic in HTTP request from one server to another in an ASP.NET web site. I have been looking into trying to do this using an http module or http handler. Are these viable ...
0
votes
1answer
203 views
Re-Routing Raspberry Pi GPIO - Dummy Pin?
I am working on porting the open-source project OpenROV for Raspberry Pi. (The project is developed for BeagleBone.) The only significant challenge of the port is changing the software's references ...
0
votes
1answer
50 views
.htaccess reroute all to index.php with one variable and preserving $_GET
I would like to reroute ALL requests through index.php with one variable and preserving $_GET. If $_GET exists, it's always after first slash. Anything after first slash that's not $_GET should be ...
1
vote
2answers
137 views
Loading a Joomla component instead of article for the front page
I want to load a Joomla component for the front page and not an article.
How would I do that?
Thanks!
1
vote
3answers
961 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
137 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.
...
1
vote
4answers
501 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 ...
2
votes
1answer
168 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 ...
0
votes
1answer
113 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
149 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 ...