Another rewrite and query string
am 05.01.2008 09:34:03 von Pawel
Hallo,
I have problem to rewrite like this
RewriteCond %{QUERY_STRING} (.*)foto(.*)$
RewriteRule (.*) http://www.onet.pl/%1-%2
I want to rewrite adres like:
http://www.mywebsite.com/index.php?44foto55
to:
http://www.onet.pl/44-55
Can anybody help me ?
Thanks
Pawel R.
Re: Another rewrite and query string
am 05.01.2008 13:51:07 von Pawel
> I have problem to rewrite like this
> RewriteCond %{QUERY_STRING} (.*)foto(.*)$
> RewriteRule (.*) http://www.onet.pl/%1-%2
>
> I want to rewrite adres like:
> http://www.mywebsite.com/index.php?44foto55
> to:
> http://www.onet.pl/44-55
>
Already solved this, should be:
RewriteCond %{QUERY_STRING} (.*)foto(.*)$
RewriteRule ^(.*)$ http://www.onet.pl/%1-%2/?
Pawel R.