carstos Posted July 19, 2006 Share Posted July 19, 2006 Hello all,I tried to make some rewrite for my URLs.I tried this:RewriteEngine onOptions +FollowSymlinksRewriteBase /RewriteRule ^\.htaccess$ - [F]RewriteRule ^test-page-([0-9]+)-[-a-zA-Z]+\.php$ /test.php?id=$1This should match urls like:test-page-23-this-is-just-a-text.phpIt works. Ok. But now I want to match urls like:test-page/23/this-is-just-a-text.phpOk. I changed my rule to:RewriteRule ^test-page/([0-9]+)/[-a-zA-Z]+\.php$ /test.php?id=$1,so I replaced - with /. It doesn't work. I said ok, maybe / should be escaped. I tried with \/, same effect, doesn't woek.What am I doing wrong? This is a simple rule and should work.Thank you all. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.