Sponsored Content
Top Forums Web Development Apache vhosts config RewriteCond to ignore part of URL Post 302705221 by crmpicco on Monday 24th of September 2012 12:13:12 PM
Old 09-24-2012
Quote:
Originally Posted by Corona688
Rewrites are not redirections. Rewrites are rewrites -- the web server sees one URL, the client another.

If you want to do actual redirects which divert the client somewhere else, I'd use the redirect directive. This would appear to involve less messing around with regexes, too.

Code:
Redirect permanent /ca/ http://full.path.to/url/

Thanks. However, I have the RewriteCond's setup (which work well) to ignore the region part of the URL when loading content. Basically, all i'm looking to do is ignore the /pa from the detection of two-letter region detection.

Is this possible without having to re-write large parts of my vhosts config?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apache, hiding the url

Hello, how to hide the full addres url, in apache web server. eg, www.example.org/www/pub/index.html, the address in browser only www.example.org . Thank You. (2 Replies)
Discussion started by: blesets
2 Replies

2. Cybersecurity

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 help. (1 Reply)
Discussion started by: ampo
1 Replies

3. 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

4. Web Development

Negate user space URL in Apache

Hello, I have a situation where I am trying to use Apache's RedirectMatch directive to redirect all users to a HTTPS URL except a single (Linux) user accessing there own webspace. I have found a piece of regular expression code that negates the username: ^((?!andy).)*$but when I try using it... (0 Replies)
Discussion started by: LostInTheWoods
0 Replies

5. Web Development

Apache Virtual URL

Hi All, i'am facing a problem with urls that don't have a filestructure under DocumentRoot. A URL like http://mydomain.com/applicationrew/Structure1/Structure2/some?parameter=key&parameter1=key1 Should be rewritet to something else. Now i defined a Location like <Location ~... (3 Replies)
Discussion started by: wuschelz
3 Replies

6. Shell Programming and Scripting

Given a url how to get last part of file

HI, I have a URL that points to a file: LINK= "http://www.webpage.org/project/team2/file.tar" However when I try to use wget on this variable I receive the following error. wget $LINK line 4: http://www.webpage.org/project/team2/file.tar: No such file or directory wget:... (1 Reply)
Discussion started by: bashnewbee
1 Replies

7. UNIX for Advanced & Expert Users

apache webserver url redirection

I need help in apache url redirection: I have added the below command in httpd.conf and it is working fine. Redirect http://xyz.com/site/homehttp://abc.com/site/home Can we set a rule such that http://xyz.com/site/* -> http://abc.com/site/* is applied For... (0 Replies)
Discussion started by: raghur77
0 Replies

8. Web Development

apache url redirection

I need help in apache url redirection: I have added the below command in httpd.conf and it is working fine. Redirect http://xyz.com/site/homehttp://abc.com/site/home Can we set a rule such that http://xyz.com/site/* -> http://abc.com/site/* is applied For... (0 Replies)
Discussion started by: raghur77
0 Replies

9. Red Hat

Apache virtual host config vs global config problem

Hi folks, I am trying to configure Apache webserver and also a virtual host inside this webserver. For Global server config: /var/www/html/index.html For virtual host config: /var/www/virtual/index.html Both client10 & www10 are pointing to 192.168.122.10 IP address. BUT, MY... (1 Reply)
Discussion started by: freebird8z
1 Replies

10. Red Hat

How to block some key words in my url for apache config?

Hi Folks, I am running a website and that needs to be tightened with security in terms of hacking... Whereas, In my URL, when i click on certain links the entire link as contains some words like below:/control_panel /controlpanel /admin /cms Whereas, i need to block those words in apache... (1 Reply)
Discussion started by: gsiva
1 Replies
install::TempContent::Objects::mod_perl-2.0.9::docs::apiUseraContriinstall::TempContent::Objects::mod_perl-2.0.9::docs::api::Apache2::ServerRec(3)

NAME
Apache2::ServerRec - Perl API for Apache server record accessors Synopsis use Apache2::ServerRec (); $error_fname = $s->error_fname(); $is_virtual = $s->is_virtual(); $keep_alive = $s->keep_alive(); $keep_alive_max = $s->keep_alive_max(); $keep_alive_timeout = $s->keep_alive_timeout(); $limit_req_fields = $s->limit_req_fields(); $limit_req_fieldsize = $s->limit_req_fieldsize(); $limit_req_line = $s->limit_req_line(); $path = $s->path(); $hostname = $s->server_hostname(); $port = $s->port(); $server_admin = $s->server_admin(); $proc = $s->process(); $timeout = $s->timeout(); $loglevel = $s->loglevel(); my $server = Apache2::ServerUtil->server; my $vhosts = 0; for (my $s = $server->next; $s; $s = $s->next) { $vhosts++; } print "There are $vhosts virtual hosts"; Description "Apache2::ServerRec" provides the Perl API for Apache server_rec object. "Apache2::ServerUtil" provides an extra functionality. API
"Apache2::ServerRec" provides the following functions and/or methods: "error_fname" Get/set the "ErrorLog" file value (e.g. logs/error_log) $error_fname = $s->error_fname(); $prev_error_fname = $s->error_fname($new_error_fname); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_error_fname ( string ) If passed, sets the new value for "ErrorLog" Note the limited functionality under threaded MPMs. ret: $error_fname ( string ) Returns the "ErrorLog" value setting. If $new_error_fname is passed returns the setting before the change. since: 2.0.00 "is_virtual" Test whether $s is a virtual host object $is_virtual = $s->is_virtual(); obj: $s ( "Apache2::ServerRec object" ) ret: $is_virtual ( boolean ) Returns the is_virtual setting. If $new_is_virtual is passed, returns the setting before the change. since: 2.0.00 Example: print "This is a virtual host" if $s->is_virtual(); "keep_alive" Get/set the "KeepAlive" setting, which specifies whether Apache should accept more than one request over the same connection from the same client. $keep_alive = $s->keep_alive(); $prev_keep_alive = $s->keep_alive($new_keep_alive); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_keep_alive ( boolean ) If passed, sets the new keep_alive. Note the limited functionality under threaded MPMs. ret: $keep_alive ( boolean ) Returns the "KeepAlive" setting. If $new_keep_alive is passed, returns the setting before the change. since: 2.0.00 "keep_alive_max" Get/set the "MaxKeepAliveRequest" setting, which specifies the maximum number of requests Apache will serve over a "KeepAlive" connection. $keep_alive_max = $s->keep_alive_max(); $prev_keep_alive_max = $s->keep_alive_max($new_keep_alive_max); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_keep_alive_max ( integer ) If passed, sets the new keep_alive_max. Note the limited functionality under threaded MPMs. ret: $keep_alive_max ( integer ) Returns the keep_alive_max setting. If $new_keep_alive_max is passed, returns the setting before the change. since: 2.0.00 "keep_alive_timeout" Get/set the "KeepAliveTimeout" setting (in microsecs), which specifies how long Apache will wait for another request before breaking a "KeepAlive" connection. $keep_alive_timeout = $s->keep_alive_timeout(); $prev_keep_alive_timeout = $s->keep_alive_timeout($new_timeout); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_keep_alive_timeout ( integer ) The expected value is in microsecs. If passed, sets the new "KeepAlive" timeout. Note the limited functionality under threaded MPMs. ret: $keep_alive_timeout ( integer ) Returns the "KeepAlive" timeout value (in microsecs). If $new_timeout is passed, returns the setting before the change. since: 2.0.00 "limit_req_fields" Get/set limit on number of request header fields $limit_req_fields = $s->limit_req_fields(); $prev_limit_req_fields = $s->limit_req_fields($new_limit_req_fields); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_limit_req_fields ( integer ) If passed, sets the new request headers number limit. Note the limited functionality under threaded MPMs. ret: $limit_req_fields ( integer ) Returns the request headers number limit. If $new_limit_req_fields is passed, returns the setting before the change. since: 2.0.00 "limit_req_fieldsize" Get/set limit on size of any request header field $limit_req_fieldsize = $s->limit_req_fieldsize(); $prev_limit = $s->limit_req_fieldsize($new_limit); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_limit_req_fieldsize ( integer ) If passed, sets the new request header size limit. Note the limited functionality under threaded MPMs. ret: $limit_req_fieldsize ( integer ) Returns the request header size limit. If $new_limit is passed, returns the setting before the change. since: 2.0.00 "limit_req_line" Get/set limit on size of the HTTP request line $limit_req_line = $s->limit_req_line(); $prev_limit_req_line = $s->limit_req_line($new_limit_req_line); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_limit_req_line ( integer ) If passed, sets the new request line limit value. Note the limited functionality under threaded MPMs. ret: $limit_req_line ( integer ) Returns the request line limit value If $new_limit_req_line is passed, returns the setting before the change. since: 2.0.00 "loglevel" Get/set the "LogLevel" directive value $loglevel = $s->loglevel(); $prev_loglevel = $s->loglevel($new_loglevel); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_loglevel ( "Apache2::Const :log constant" ) If passed, sets a new "LogLevel" value Note the limited functionality under threaded MPMs. ret: $loglevel ( "Apache2::Const :log constant" ) Returns the "LogLevel" value as a constant. If $new_loglevel is passed, returns the setting before the change. since: 2.0.00 For example, to set the "LogLevel" value to "info": use Apache2::Const -compile => qw(LOG_INFO); $s->loglevel(Apache2::Const::LOG_INFO); "next" The next server record in the list (if there are vhosts) $s_next = $s->next(); obj: $s ( "Apache2::ServerRec object" ) ret: $s_next ( "Apache2::ServerRec object" ) since: 2.0.00 For example the following code traverses all the servers, starting from the base server and continuing to vhost servers, counting all available vhosts: use Apache2::ServerRec (); use Apache2::ServerUtil (); my $server = Apache2::ServerUtil->server; my $vhosts = 0; for (my $s = $server->next; $s; $s = $s->next) { $vhosts++; } print "There are $vhosts virtual hosts"; "path" Get/set pathname for the "ServerPath" setting $path = $s->path(); $prev_path = $s->path($new_path); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_path ( string ) If passed, sets the new path. Note the limited functionality under threaded MPMs. ret: $path ( string ) Returns the path setting. If $new_path is passed, returns the setting before the change. since: 2.0.00 "port" Get/set the port value $port = $s->port(); $prev_port = $s->port($new_port); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_port ( integer ) If passed, sets the new port. Note the limited functionality under threaded MPMs. META: I don't think one should be allowed to change port number after the server has started. ret: $port ( integer ) Returns the port setting. If $new_port is passed returns the setting before the change. since: 2.0.00 "process" The process this server is running in $proc = $s->process(); obj: $s ( "Apache2::ServerRec object" ) ret: $proc ( "Apache2::Process object" ) since: 2.0.00 "server_admin" Get/set the "ServerAdmin" value $server_admin = $s->server_admin(); $prev_server_admin = $s->server_admin($new_server_admin); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_server_admin ( string ) If passed, sets the new "ServerAdmin" value. Note the limited functionality under threaded MPMs. ret: $server_admin ( string ) Returns the "ServerAdmin" value. If $new_server_admin is passed, returns the setting before the change. since: 2.0.00 "server_hostname" Get/set the "ServerName" value $server_hostname = $s->server_hostname(); $prev_server_hostname = $s->server_hostname($new_server_hostname); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_server_hostname ( string ) If passed, sets the "ServerName" value Note the limited functionality under threaded MPMs. ret: $server_hostname ( string ) Returns the "ServerName" value If $new_server_hostname is passed, returns the setting before the change. since: 2.0.00 "timeout" Get/set the timeout ("TimeOut") (in microsecs), which Apache will wait for before it gives up doing something $timeout = $s->timeout(); $prev_timeout = $s->timeout($new_timeout); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_timeout ( integer ) If passed, sets the new timeout (the value should be in microseconds). Note the limited functionality under threaded MPMs. ret: $timeout ( integer ) Returns the timeout setting in microseconds. If $new_timeout is passed, returns the setting before the change. since: 2.0.00 Let us repeat again: the timeout values is microseconds. For example to set the timeout to 20 secs: $s->timeout(20_000_000); Notes Limited Functionality under Threaded MPMs Note that under threaded MPMs, some of the read/write accessors, will be able to set values only before threads are spawned (i.e. before the "ChildInit phase"). Therefore if you are developing your application on the non-threaded MPM, but planning to have it run under threaded mpm, you should not use those methods to set values after the ChildInit phase. The affected accessor methods are marked as such in their respective documentation entries. Unsupported API "Apache2::ServerRec" also provides auto-generated Perl interface for a few other methods which aren't tested at the moment and therefore their API is a subject to change. These methods will be finalized later as a need arises. If you want to rely on any of the following methods please contact the the mod_perl development mailing list so we can help each other take the steps necessary to shift the method to an officially supported API. "addrs" Get the addrs value $addrs = $s->addrs(); obj: $s ( "Apache2::ServerRec object" ) ret: $addrs ( "Apache2::ServerAddr" ) Returns the addrs setting. since: subject to change META: this methods returns a vhost-specific Apache2::ServerAddr object, which is not implemented at the moment. See the struct server_addr_rec entry in httpd-2.0/include/httpd.h for more information. It seems that most (all?) of the information in that record is available through other APIs. "lookup_defaults" Get the lookup_defaults value. MIME type info, etc., before we start checking per-directory info. $lookup_defaults = $s->lookup_defaults(); obj: $s ( "Apache2::ServerRec object" ) ret: $lookup_defaults ( "Apache2::ConfVector" ) Returns the lookup_defaults setting. since: subject to change "module_config" Get config vector containing pointers to modules' per-server config structures. $module_config = $s->module_config(); obj: $s ( "Apache2::ServerRec object" ) ret: $module_config ( "Apache2::ConfVector" ) Returns the module_config setting. since: subject to change "names" Get/set the value(s) for the "ServerAlias" setting $names = $s->names(); $prev_names = $s->names($new_names); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_names ( "APR::ArrayHeader" ) If passed, sets the new names. Note the limited functionality under threaded MPMs. ret: $names ( "APR::ArrayHeader" ) Returns the names setting. If $new_names is passed, returns the setting before the change. since: 2.0.00 META: we don't have "APR::ArrayHeader" yet "wild_names" Wildcarded names for ServerAlias servers $wild_names = $s->wild_names(); $prev_wild_names = $s->wild_names($new_wild_names); obj: $s ( "Apache2::ServerRec object" ) opt arg1: $new_wild_names ( "APR::ArrayHeader" ) If passed, sets the new wild_names. Note the limited functionality under threaded MPMs. ret: $wild_names ( "APR::ArrayHeader" ) Returns the wild_names setting. If $new_wild_names is passed, returns the setting before the change. since: 2.0.00 META: we don't have "APR::ArrayHeader" yet See Also mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.18.2 install::TempContent::Objects::mod_perl-2.0.9::docs::api::Apache2::ServerRec(3)
All times are GMT -4. The time now is 07:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy