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. Link to comment https://forums.phpfreaks.com/topic/15074-problem-with-mod-rewrite/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.