[EMAIL PROTECTED] rewrite module

2006-02-27 Thread D. Hunter
iive just installed apache 2.2 im using .htaccess to rewrite i chceked to see whats loaded & its says the following:   Loaded Modules: core_module (static) authn_file_module (static) authn_default_module (static) authz_host_module (static) authz_groupfile_module (static) authz_user_module (static)

SV: [EMAIL PROTECTED] rewrite module/regexp question

2006-02-16 Thread Kjell Grindalen
Thank you very much, that fixed it :-) Mvh Kjell Grindalen -Opprinnelig melding- Fra: Robert Ionescu [mailto:[EMAIL PROTECTED] Sendt: 16. februar 2006 14:07 Til: users@httpd.apache.org Emne: Re: [EMAIL PROTECTED] rewrite module/regexp question Kjell Grindalen wrote: > RewriteR

Re: [EMAIL PROTECTED] rewrite module/regexp question

2006-02-16 Thread Robert Ionescu
Kjell Grindalen wrote: RewriteRule ^/$ http://www.otherdomain.com/Amat\%C3\%B8ren/ [R] My problem is that when its written out to the client, it comes out like this http://www.otherdomain.com/Amat%25C3%25B8ren/ Use the NE flag (no escape) to prevent the escaping of % into %25 Rewrite

[EMAIL PROTECTED] rewrite module/regexp question

2006-02-16 Thread Kjell Grindalen
Hi everyone   I have a question about regexp use with apache 2.0.55   I have an url: http://www.domain.com, I want visitors that visits this site to go to the following http://www.otherdomain.com/Amat%C3%B8ren/   I use the following rewrite:   RewriteRule ^/$ http://www.otherdomain.

Re: [EMAIL PROTECTED] rewrite module eliminate the of .html address

2005-11-11 Thread Joshua Slive
On 11/11/05, Thomas J Berger <[EMAIL PROTECTED]> wrote: > I would like to eliminate my user from having to type ".html" at the each > web page > > www.thermoweb.com/edgebanding.html to www.thermoweb.com/edgebanding > > How do I code this in the htaccess file. One simple way is Options +MultiViews

Re: [EMAIL PROTECTED] rewrite module eliminate the of .html address

2005-11-11 Thread Boysenberry Payne
Try RewriteEngine on RewriteRule ^(.*)edgebanding[/]?$ /edgebanding.html Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com On Nov 11, 2005, at 10:16 AM, Thomas J Berger wrote: I would like to eliminate my user from having to type ".h

[EMAIL PROTECTED] rewrite module eliminate the of .html address

2005-11-11 Thread Thomas J Berger
I would like to eliminate my user from having to type ".html" at the each web page www.thermoweb.com/edgebanding.html to www.thermoweb.com/edgebanding How do I code this in the htaccess file. Thanks Tom - The official User-To