Apache How to 'alias'/'locate'/'redirect' subsite to another internal server?


 
Thread Tools Search this Thread
Top Forums Web Development Apache How to 'alias'/'locate'/'redirect' subsite to another internal server?
# 1  
Old 10-13-2010
Apache How to 'alias'/'locate'/'redirect' subsite to another internal server?

Apache Experts!

We have 'n' servers behind a firewall. One of these, 'Machine A', is the DMZ, and is world facing. It serves up any number of Apache Virtual Hosts already, no problem!

Now, how do we 'attach' another server - currently visible only to the internal subnet - such that its contents appear to come from one of these hosts, and become world-visible?, as in:
http //serverA/ServerB (essentially)

This simple directive within the vhost:
Quote:
Redirect temp /wiki http //192.168.0.100/path/to/wiki
Doesn't work, as it requires an external viewer to be able to see the 'internal' server IP address, which of course he cannot.

Seems to me we did this some time ago... ????
# 2  
Old 10-13-2010
Apache mod_rewrite
# 3  
Old 10-13-2010
I know, I know. I've been studying it for years now... !

My off-site clients are getting errors:

"GET /wiki HTTP/1.1" 301 235
"GET /wiki/ HTTP/1.1" 302 231

I'm back on this tonight.
# 4  
Old 10-19-2010
I am really, really having trouble with this. May I ask for someone's help with this?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

CentOS VPS Server Apache Alias

All, We have a hosted CentOS 6 VPS server, using CPanel to install/config the domains/subdomains and installed osTicket in: my.domain.com/tkng/ We are trying to define the following Apache alias: my.domain.com/tickets which has to point to: my.domain.com/tkng/upload/ CPanel... (0 Replies)
Discussion started by: TBotNik
0 Replies

2. Web Development

How to redirect URLs in Apache?

I am a total newbie to Apache. I need to do this only for this weekend during an upgrade from old system to new system We have different URLs http://domain.name/xxx (xxx varies to any length and words - it can be /home, /login, /home/daily, /daily/report, etc). How do i redirect all those to... (0 Replies)
Discussion started by: GosarJunk
0 Replies

3. Web Development

Apache Redirect

Hi All, I have my URL as http://mysite.com/shop/maternity/tops_30116 Now I want to append "?No=0&Nrpp=100" and then redirect to http://mysite.com/shop/maternity/tops_30116?No=0&Nrpp=100 This is for many URL which have "maternity" inside them. Can there be a single Redirect... (0 Replies)
Discussion started by: ankur328
0 Replies

4. Shell Programming and Scripting

Apache redirect file exceptions

Hi, I am currently redirecting all mobile devices to my mobile site in apache. I need to exempt the following file types from redirecting even if the request is made from a mobile device. *.css *.jpg *.jpeg *.gif *.js Does anyone know where and what I need to do for this? Thanks in... (1 Reply)
Discussion started by: kmaq7621
1 Replies

5. Web Development

redirect http to https in apache

i read thru a few article how to do it, but i could not get it to work the way i want it. vi ../httpd.conf Redirect permanent /dev https://servername/portal/ when i type servername, works fine. my goal is to type dev, and it takes me to https://servername/portal/ (4 Replies)
Discussion started by: lawsongeek
4 Replies

6. UNIX for Dummies Questions & Answers

Locate which httpd.conf is used by Apache

What is the command to see what httpd.conf file is apache using. Apache is started. (1 Reply)
Discussion started by: galford
1 Replies

7. Web Development

why do apache redirect me to the same path ?

Hi, everything is working perfectly. I have one more question. Is it possible to specify a file instead of a directory in DocumentRoot ? (see phpinfo.php in the example). Is it a correct procedure ? <VirtualHost www.patrick.dev:80> ServerAdmin patrick.diviacco@gmail.com ... (1 Reply)
Discussion started by: aneuryzma
1 Replies

8. Web Development

APACHE rewrite / redirect URL

Hello. I have scenario where a Client send request to Server1. Server1 send request to Server2. Request are xmlHTTPRequest - need to get data (XML) from Server2 back to client. Trying to use APACHE proxy... Anyone can help? What to download / configure / ...? Thank you for your... (2 Replies)
Discussion started by: ampo
2 Replies

9. HP-UX

Apache Redirect Transparently

I have two servers running apache server, namely server A and B. All users access server A, but for some application, I would like to redirect the request to server B. I have set apache redirect in server A apache config file. Redirect /application http://serverB/application Now, the flow... (2 Replies)
Discussion started by: alfredo
2 Replies

10. UNIX for Dummies Questions & Answers

Howto locate locally installed Perl module for a CGI script in APACHE .htaccess

Hi, I have the following simple CGI script, just containg header: #!/usr/bin/perl -w use CGI ':standard'; use lib "/home/myname/lib/perl5/site_perl/5.8.5/"; use Mail::Sendmail; I also have included this directive in ~/public_html/.htaccess : SetEnv PERL5LIB... (0 Replies)
Discussion started by: monkfan
0 Replies
Login or Register to Ask a Question