RewriteRule - take all urls with dash
Posted
by Qiao
on Stack Overflow
See other posts from Stack Overflow
or by Qiao
Published on 2010-06-07T10:41:27Z
Indexed on
2010/06/08
3:02 UTC
Read the original article
Hit count: 267
I need to redirect all urls with dash to a specific page.
For example:
site.com/this-url
to site.com/page.php?url=this-url
RewriteRule
RewriteRule ^(.+-.+)$ page.php?url=$1
just hang http. No response.
What is wrong and how it can be done?
© Stack Overflow or respective owner