Forum Moderators: phranque

Message Too Old, No Replies

mod_rewrite, convert URI to a GET-String

         

st2xo

2:38 pm on Sep 17, 2002 (gmt 0)

10+ Year Member



Hi,

I´m searching for a mod_rewirte rule to:

[domain.com...] -> [domain.com...]

Because I need these GET-string-parameters at any time, I cant use the Alias directive in the httpd.conf.

Of course there will be no directory named "foo" ... also there is no trailing slash problem at this server ...

I´m not very familiar with regex and/or mod_rewrite, the apache docs and google results had not helped me, so I like to ask here ....

could anybody help? Thanks a lot!

Stefan

andreasfriedrich

4:08 pm on Sep 17, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It took some serious searching to find this one since RewriteRules are extremely shy creatures indeed. ;)

internal rewrite
RewriteEngine On
RewriteRule ^(.*) xyz.php?abc=$1 [L,QSA]

external redirect
RewriteEngine On
RewriteRule ^(.*) [domain.com...] [R,L,QSA]

jatar_k

5:00 pm on Sep 17, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Welcome to WebmasterWorld [webmasterworld.com] st2xo

st2xo

6:31 pm on Sep 17, 2002 (gmt 0)

10+ Year Member



Hi Andy,

Nooo, they are not shy to be found, they are living to thousands, but, shame on me, I´ll lose my head if I see regex more complex than to extract some chars :)

Thank you, the internal regex works fine!

Stefan