[users@httpd] Url Rewrite help

2015-04-10 Thread bugsfix
Can anyone else me with this rewrite rule I have the following https://server.com/test/test which I would like to rewrite to and be masked in the browser to the following

[users@httpd] URL Rewrite Question

2014-03-28 Thread Brian Gaber
This is my first attempt at using RewriteRule. I have about 200 webpages the contain SPS or MENU (in UPPER or lower case) that I want to send to a webpage on another server. I thought this might work, but it has not. RewriteCond %{REQUEST_URI} (SPS|MENU) RewriteRule ^/$

Re: [users@httpd] URL Rewrite Question

2014-03-28 Thread Michael Streeter
On 3/28/2014 9:39 AM, Brian Gaber wrote: This is my first attempt at using RewriteRule. I have about 200 webpages the contain SPS or MENU (in UPPER or lower case) that I want to send to a webpage on another server. I thought this might work, but it has not. RewriteCond %{REQUEST_URI}

[users@httpd] url rewrite

2011-06-01 Thread Friedrich Locke
Hi list users, this is my first post on this mailing list. My doubt is the following: Is it possible to redirect a document root based on the site address like in a template manner wihtout having to configure for each virtual system ? I mean this: Access to http://x.y.z/abc.html should be

Re: [users@httpd] url rewrite

2011-06-01 Thread Macks, Aaron
The way I have accomplished this in the past is to have a different file with global redirects and include it in each virtualHost config. It means you need to have a line like 'include conf/global-rewrites.conf' in each vhost, but you don't need to duplicate the rewrite rules proper A --

[users@httpd] URL Rewrite

2011-04-20 Thread Rod Behr
Hi New to Apache, but learning fast. Knocks IIS into a cocked hat, but I have a newbie question: I have looked through the documentation and examples for the mod_rewrite module and although I think my request is simple, I cannot find the solution to it in either this documentation or the

Re: [users@httpd] URL Rewrite

2011-04-20 Thread Francois Gingras
On Wed, Apr 20, 2011 at 7:07 AM, Rod Behr rod.b...@impact-europe.com wrote: Hi New to Apache, but learning fast. Knocks IIS into a cocked hat, but I have a newbie question: I have looked through the documentation and examples for the mod_rewrite module and although I think my request is

Re: [users@httpd] URL Rewrite

2011-04-20 Thread Mark Montague
On April 20, 2011 7:07 , Rod Behr rod.b...@impact-europe.com wrote: I want my browser to display only the root canonical URL while browsing: http://www.mydomain.com. Whatever is contained in the URL or querystring following this should not appear in the browser window. So

[users@httpd] URL rewrite rule not working the way I thought it should

2011-03-03 Thread Campbell, Lance
I have a URL: http://test.webservices.illinois.edu/bob/calendar/list/7 I want to rewrite the URL internally so apache sees it as the following tomcat mod_jk URL: http://test.webservices.illinois.edu/calendar/list/7 BUT I don't want to redirect. I want apache to see the URL internally as the

Re: [users@httpd] URL rewrite rule not working the way I thought it should

2011-03-03 Thread Eric Covener
Is there a different command other than [L] I should use to tell apache to rewrite the URL internally?  Or is my issue related to the fact that I am pointing to a URL that goes to mod_jk? Try PT - The official User-To-User

RE: [users@httpd] URL rewrite rule not working the way I thought it should

2011-03-03 Thread Campbell, Lance
PT is the answer. Thanks, Lance Campbell Software Architect/Project Manager/DBA Web Services at Public Affairs 217.333.0382 -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Thu 3/3/2011 3:18 PM To: users@httpd.apache.org Subject: Re: [users@httpd] URL rewrite

Re: [users@httpd] URL-rewrite

2005-06-20 Thread Joshua Slive
On 6/20/05, Charles Li [EMAIL PROTECTED] wrote: I have virtual host setup with HTTP server. I would like to user URL rewrite. I was told that I need to add the rewrite rules in each virtual host. Is this true, or should I be able to inherit from the parent with the rewriteoption? You can