The redirection tag has no wiki summary.
0
votes
2answers
111 views
Redirect not found pages
In apache,
How I can redirected the pages not found to / ?
Not Found
The requested URL /dsadsa was not found on this server.
3
votes
1answer
358 views
Forcing command on ssh's authorized_keys merges STDOUT and STDERR
I've been working to have a script in a centralized server to do some things and output a .tar.gz file (see redirect temporarily STDOUT to another file descriptor, but still to screen). I also have ...
2
votes
3answers
1k views
redirect temporarily STDOUT to another file descriptor, but still to screen
I'm making a script that executes some commands inside, and these commands show some output on STDOUT (and STDERR as well, but that's no problem). I need that my script generates a .tar.gz file to ...
1
vote
3answers
160 views
Redirecting specific traffic to amazon AWS
My server has recieved sudden increase in the (read) web traffic, requesting many map image tiles, and apache cannot handle it.
Apache cannot even handle the redirections! The average load I get in ...
0
votes
1answer
552 views
Nginx - Redirect any Subdomain to File without Rewriting
Recently I have switched from Apache to Nginx to increase performance on a web server running Ubuntu 11.10. I have been having issues trying to figure out how certain things work in Nginx compared to ...
1
vote
1answer
117 views
mirror STDOUT and STDERR to file by default
How I can accomplish STDOUT to be to logged in a file (appending), but preserving the flow (leave STDOUT to STDOUT) ?
STDOUT should work transparently, but should be logged also into a file, without ...
0
votes
2answers
302 views
Redirect to port based on requested (sub)domain (1 IP, non-HTTP request) [duplicate]
Possible Duplicate:
How to use DNS to redirect domain to specific port on my server
So I've been trying to figure out how to redirect a subdomain to a specific port.
Let's assume the ...
0
votes
1answer
600 views
Squid Transparent Proxy with port 80 redirection: blank page for some sites
I have a squid transparent proxy that's working great.
To save time on client configurations I've decided to redirect port 80 to 3128 so I can configure for all clients the new proxy just changing ...
0
votes
1answer
74 views
Apache redirect to external site with directory
I have some requests like
blogs.bobvilapaint.com/11/11/2011/title
which I would like to redirect to
staging.bobvila.com/blogs/title
I've written
RewriteRule ^[0-9/]+/[0-9]+/[0-9]+/(.*)$ ...
1
vote
2answers
418 views
I can access my site via ports 8443 and 8080 but not via 443 and 80 (Tomcat)
I am using Tomcat7 on Windows Server 2008
My Server.xml is set up as follows:
<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000"
redirectPort="443"
compression="on" ...
0
votes
1answer
45 views
Need help regarding htaccess stuff
I have my site at www.example.com and have several sub-domains city wise. Suppose i have subdomain with name say "subdomain.example.com" then i want to redirect the subdomain homepage to directory in ...
0
votes
2answers
469 views
How can I tell Apache to stop redirecting a user to my mobile site if a certain URL parameter is called?
I'd like to redirect users to the mobile version of my website using apache based on UserAgent
However if a user chooses to view the full version of the site by clicking on a URL that was the ...
0
votes
1answer
208 views
IIS 7 Redirect To SSL
I have an intranet site, which is running on IIS 7. The site is accessible using both the FQDN (mysite.mydomain.mycompany) and by just "mysite".
The SSL certificate is signed for FQDN. It's installed ...
0
votes
1answer
366 views
How to make a subdomain permanent redirect?
I have a new vps CentOS 5.3 with Webmin, BIND, Apache installed. I want install Shoucast 2 server on port 8000. Can i create subdomain (ex: radio.mystation.com) and redirect it to ...
1
vote
2answers
218 views
tar to tape and file with encryption
I am trying to encrypt our tape backups, using tar and openssl but also write to a local file, so far I have :
tar --total -czp ./tmp ./home | tee /tmp/Archive.tar.gz | tee > /dev/nst0
I'm not ...
1
vote
1answer
141 views
Why doesn't this redirect work?
I have some URIs which have been published or shared which I now need to redirect. The old urls take the form:
http://www.mysite.com/!#story/45 and I want to redirect them to ...
0
votes
2answers
212 views
6001 Redirected outside allowed domains
I have noticed that visits on my clients site have lowered much in last 2 weeks, so i checked all scripts Java, php, .htaccess all posibilities, pinged from worldwide, using 100 tools for pings ...
0
votes
1answer
115 views
redirecting to the originating server
The following is working as expected. The only problem is that it does not return the source server command prompt unless I hit Ctrl + c
[abc@server]$ 0</dev/null echo "ls" | ssh -t -t ...
1
vote
2answers
526 views
When I type localhost in IE8 only I get redirected to our public website
The other day I posted this question http://stackoverflow.com/questions/7519360/urls-are-inconsistently-being-redirected-using-isapi-urlrewrite-3-0
I was doing some local development testing on my ...
0
votes
1answer
89 views
Redirect “/” to “/web” using IIS7
I'm hosting a site where I would like for various reasons to have http://mydomain.com automatically redirect to http://mydomain.com/web while at the same time still allowing ...
0
votes
1answer
24 views
Redirect email from a shorter domain name to a longer one
I'm new to website management including DNS and MX records.
Here's my scenario. My company has an official domain: reallylongandcomplicatedname.com.
They bought a shorter name: easyname.com.
...
0
votes
1answer
135 views
How to redirect outgoing network connections?
I was wondering how would I redirect outgoing connections from all applications to a certain proxy or something like that without having to hook winsock functions on windows. I noticed Proxifier is ...
0
votes
1answer
2k views
How to quick and easy remove part of an URL in Nginx with HttpRewriteModule?
I know about the HttpRewriteModule, but I don't really know how to handle regex and I would need to redirect all URLs within a certain directory to another, specifically
...
0
votes
1answer
375 views
IIS configuration not to redirect to default.aspx
When i write http://www.spotagel.com it redirects to http://www.spotagel.com/default.aspx,
i tried some method to stop this, but they casued infinite loops. how can i do this without infinite loops
1
vote
1answer
89 views
Server 2008 R2 Group Policy Folder Redirects not working
I made a folder named Folder Redirects that is being shared by everyone with all but full control.
I went through the group policy for my domain and setup folder redirection. I applied the settings ...
1
vote
2answers
177 views
Images on IIS server not keeping HTTPS protocol
When using an HTTPS connection we are receiving the following warning:
"Your connection is encrypted with 128-bit encryption. However, this
page includes other resources which are not secure."
...
-2
votes
1answer
250 views
How to redirect in nginx without using rewrite?
Can someone tell me how I can redirect x.domain.com to www.domain2.com in nginx without using the rewrite module/functionality?
2
votes
1answer
294 views
Can I redirect an HTML link on our webpage to another server?
We have a website that we host. In the sites header, we have links to sections of our site. eg.
[Logo] [Buy] [Sell] [Pew Pew]
and the current links are
Logo: / (root of the site)
Buy: /buy/
Sell: ...
1
vote
1answer
231 views
Redirect mobile browser in apache but allow them to view full pages
I know how to redirect browsers based on user-agent to the mobile site.
However I am having trouble allowing mobile users to view more then one version of a full pages.
Here is the scenario:
...
0
votes
1answer
502 views
How to redirect request to second host if the first one is off-line?
I have two hosts in different networks (different ISPs). I would like to redirect all traffic to second host only in case if first one is off-line (unexpectedly).
What are technical solutions to ...
2
votes
2answers
332 views
Redirect WWW to non-WWW without using a separate virtual server in Cherokee
I'm using Cherokee webserver and I wish to redirect all requests to www.domain.com to domain.com without creating a separate virtual server to redirect requests.
In the Host Match section, I've set ...
0
votes
2answers
81 views
Host File Redirect From Virus
I have a clients laptop that is doing the redirect of web pages to other sites.
I have run HitManPro and Combofix and they didn't come up with anything major. There is no proxy set in Internet ...
4
votes
2answers
7k views
Find users that are auto forwarding / redirecting their email in Exchange 2010 using Powershell
We are using Live@edu, which is essentially hosted exchange server with some additional features and limitations to work around, and I'm trying to find everybody that is forwarding or redirecting ...
7
votes
3answers
2k views
How do I obscure my Wordpress install via htaccess?
(I am aware that security via obscurity is not recommended).
I am trying to hide the fact that I am using Wordpress. This post is helpful, but it only addresses the content (sort of). I am interested ...
-1
votes
2answers
741 views
How to setup a web proxy page where I can log into google docs and other blockes sites?
I live in a place where http://docs.google.com is blocked. Is there any way I can access it through a web proxy (a page where I can type the address)? I have an EC2 machine, and I tried using phpProxy ...
0
votes
0answers
275 views
Group policy folder redirection to NAS unit
We're using Server 2008 and want to setup folder redirection to a Linux-based NAS unit (Netgear ReadyNAS or Buffalo TeraStation). We need some cheap, affordable storage and this is about all we can ...
1
vote
2answers
1k views
Redirecting to other internal servers based on sub domain
Here is my situation
home network, windows machines, 1 external facing IP address (that allows port 80)
1 windows home server always on machine, planning on upgrading to WHS 2011 soon.
several IP ...
1
vote
1answer
621 views
Disabling Directory redirect
While I understand that this is a minor issue, I have wondered whether it is possible to disable redirects on directory urls in Apache2.
Currently, when connectiong to http://localhost/cgi, apache2 ...
2
votes
1answer
268 views
Failover/redundant SSH
I have an SSH server where multiple clients SSH in to maintain a bunch of port forwards.
What I want to do is, if the server goes down, have the clients automatically connect to the next server.
The ...
2
votes
2answers
2k views
How to redirect all mail from one domain to another in Postfix?
I have two forms of the same domain name, one being a common misspelling of the other, let's say tedswidgets.com and tedswigets.com.
I'd like to redirect all mail for <someone>@tedswigets.com to ...
0
votes
1answer
165 views
URL in address bar does not get the redirections
after deploying this website I was developing locally, on a Windows Server 2008 R2, I cannot seem to get the updated URLs from the server on my browser.
The scenario is like this:
I have a main ...
1
vote
1answer
34 views
re-translate a link to the proper directory
We have a folder on our website http://openeye.net/imagesa that's full of garbage data that external sites and half of the company uses as a dump directory. I'm planning on ultimately nuking it ...
0
votes
1answer
1k views
Terminal Services Server - local printer redirection errors help
I am using a Windows Server 2008 Standard set up with Terminal Services.
Generally it has worked well, including when printing to locally attached printers / printer redirection.
Today at a ...
-1
votes
1answer
180 views
Suspicious redirection to russian pages. Is government spying us? [closed]
Recently when I browse some multi-language websites, the default language becomes Russian.
An example is www.amd.com which redirects me to http://www.amd.com/ru/Pages/AMDHomePage.aspx
I am sure I ...
0
votes
1answer
88 views
mod_rewrite seems to be ignoring condition statements
I'm dying on this htaccess:
RewriteCond %{HTTP_HOST} ^[www\.]?old\.com [NC]
RewriteCond %{REQUEST_URI} ^.+$
RewriteCond %{REQUEST_URI} !^wp-admin
RewriteCond %{REQUEST_URI} !^index
...
0
votes
2answers
81 views
Redirection in Windows Server
I do have a similar question posted on Server Fault.
Still, I want to explore various ways by which one can effectively redirect traffic coming to a Windows Server. Is it possible that I have a ...
2
votes
2answers
641 views
socat connect-connect “proxy” two inbound TCP connections to expose a firewalled service?
I'm struggling a bit trying to see how to use socat (or a similar TCP port redirector) to expose a firewalled service on a PC.
Here's the scenario: I have a server PC which will be acting as a ...
0
votes
1answer
151 views
Configure Redirection Handler in Cherokee Server 0.99.39
I want to move my site from Apache to Cherokee. The install and basic configuration went very smoothly. However, I am having some difficulty with the URL rewriting configuration.
For example, in my ...
1
vote
1answer
73 views
Url Redirections using .htaccess
I would like to add 1500 url redirections using .htaccess on a apache server.
Is it a bad idea ? will it decrease the performances significantly?
Thanks
0
votes
2answers
232 views
linux networking: how to redirect incoming connections from old server to new server?
I'm in the process of moving my old server to a new server, but i will keep the old server running for database replication and load balancing, etc.
each server has a separate internet connection with ...