Rewrite proxypass


 
Thread Tools Search this Thread
Operating Systems Linux Rewrite proxypass
# 1  
Old 09-05-2013
Rewrite proxypass

Hi,

I have a Apache 2.0 web server. When a users comes in to sitea.com a check is applied if the path ends with *t*, the user hits a rewrite rule that adds an environment variable called x is hit with a proxypass. This has worked successfully in the past, but recently I added another rewrite rule that states if file is not found in document root then look at this path on the file system. If the file is in another path then the document root, the user is prompted with a 404 error. If I remove the proxy pass from the first rewrite rule that adds a variable then everything works fine. Does anyone know why this occurs? I know I can fix this issue by removing [P] from the rewrite rule, but what is explanation to this problem?
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Web Development

Rewrite wrong request

Hi everybody, In my web site I have several index pages in different languages in the following format http://www.mysite.com/lang_index.htmlTwo days ago I noticed increased, many times. Google bot activity on my site and when I checked my log file I found that all pages crawled were wrong... (3 Replies)
Discussion started by: georgi58
3 Replies

2. UNIX for Advanced & Expert Users

Sendmail Rewrite Ruleset

Hi all, I like to write a rule which do the following: INPUT ADDRESS REWRITTEN TO ----------------------------- ----------------------------- foo.bar@sub.domain.com bar@domain.com foo@othersub.domain.com ... (1 Reply)
Discussion started by: bashily
1 Replies

3. Shell Programming and Scripting

Efficient rewrite of code?

egrep -v "#" ${SERVERS} | while read shosts do grep -Pi "|" ${LOGFILE} | egrep "${snhosts}" | egrep "NOTIFICATION:" | awk -F";" '{print $3}' | sort -n | uniq | while read CEXIST do ... (6 Replies)
Discussion started by: SkySmart
6 Replies

4. Web Development

Need help with rewrite rule

Hi, I hosted my site on Apache web server. I wanted to redirect all the users request to a HTML page(maintenance page). I used the below rewrite rule to do ths same. RewriteEngine on RewriteRule .* /maintenance.html The maintenance.html page contains an image. When ever I try to... (2 Replies)
Discussion started by: BSrikanthB
2 Replies

5. UNIX for Dummies Questions & Answers

rewrite date

I'm looking to have function that takes the present month and rewrites it into this form: _06_ (june), _09_ (september), and so on.. I would like this to be a my $this_month=code that rewrites date function because I would like to be a able to call it multiple times in the script by writing... (5 Replies)
Discussion started by: marringi
5 Replies

6. Shell Programming and Scripting

grep help, how do i rewrite this

Thanks , franklin you method worked, i knew i had to use a while loop and getline in there just didnt know the proper order :) Hi everyone, im trying to make the following command line shorter by introducing a script that join up all the grep commands ./new1a < numbers.txt | grep -i -v '^a '... (5 Replies)
Discussion started by: weezybaby
5 Replies

7. Shell Programming and Scripting

How do I rewrite to use a while instead of find?

for FILE in `find /home/Upload/*` Need to use a while instead to prevent errors when the file is emptied (4 Replies)
Discussion started by: goodmis
4 Replies

8. UNIX for Advanced & Expert Users

Apache Rewrite help!

I am trying to write RewriteRule on Apache_1.3.26 to get users web page from another server. for example if users tries to get web page on www.somedomain.com/~usersname it will get the web page from www.testdomain.com/~username without redirect and users will not be aware of any redirect... (1 Reply)
Discussion started by: hassan2
1 Replies
Login or Register to Ask a Question
TRIVIAL-REWRITE(8)					      System Manager's Manual						TRIVIAL-REWRITE(8)

NAME
trivial-rewrite - Postfix address rewriting and resolving daemon SYNOPSIS
trivial-rewrite [generic Postfix daemon options] DESCRIPTION
The trivial-rewrite daemon processes two types of client service requests: rewrite Rewrite an address to standard form. The trivial-rewrite daemon by default appends local domain information to unqualified addresses, swaps bang paths to domain form, and strips source routing information. This process is under control of several configu- ration parameters (see below). resolve Resolve an address to a (transport, nexthop, recipient) triple. The meaning of the results is as follows: transport The delivery agent to use. This is the first field of an entry in the master.cf file. nexthop The host to send to. For local delivery this is an empty string. recipient The envelope recipient address that is passed on to nexthop. The trivial-rewrite daemon by default only distinguishes between local and non-local mail. For finer control over mail routing, use the optional transport(5) lookup table. This program expects to be run from the master(8) process manager. STANDARDS
None. The command does not interact with the outside world. SECURITY
The trivial-rewrite daemon is not security sensitive. By default, this daemon does not talk to remote or local users. It can run at a fixed low privilege in a chrooted environment. DIAGNOSTICS
Problems and transactions are logged to syslogd(8). BUGS
CONFIGURATION PARAMETERS
The following main.cf parameters are especially relevant to this program. See the Postfix main.cf file for syntax details and for default values. Use the postfix reload command after a configuration change. Miscellaneous inet_interfaces The network interfaces that this mail system receives mail on. This information is used to determine if user@[net.work.addr.ess] is local or remote. mydestination List of domains that this machine considers local. myorigin The domain that locally-posted mail appears to come from. resolve_unquoted_address When resolving an address, do not quote the address localpart as per RFC 822, so that additional @, % or ! characters remain visi- ble. This is technically incorrect, but allows us to stop relay attacks when forwarding mail to a Sendmail primary MX host. Rewriting allow_percent_hack Rewrite user%domain to user@domain. append_at_myorigin Rewrite user to user@$myorigin. append_dot_mydomain Rewrite user@host to user@host.$mydomain. swap_bangpath Rewrite site!user to user@site. Routing local_transport Where to deliver mail for destinations that match $mydestination or $inet_interfaces. The default transport is local. Syntax is transport:nexthop; see transport(5) for details. The :nexthop part is optional. default_transport Where to deliver non-local mail when no information is explicitly given in the transport(5) table. The default transport is smtp. Syntax is transport:nexthop; see transport(5) for details. The :nexthop part is optional. parent_domain_matches_subdomains List of Postfix features that use domain.tld patterns to match sub.domain.tld (as opposed to requiring .domain.tld patterns). relayhost The default host to send non-local mail to when no entry is matched in the transport(5) table. When no relayhost is specified, mail is routed directly to the destination's mail exchanger. transport_maps List of tables with domain to (transport, nexthop) mappings. SEE ALSO
master(8) process manager syslogd(8) system logging transport(5) transport table format LICENSE
The Secure Mailer license must be distributed with this software. AUTHOR(S) Wietse Venema IBM T.J. Watson Research P.O. Box 704 Yorktown Heights, NY 10598, USA TRIVIAL-REWRITE(8)