Jump to content

Problem with mod rewrite


carstos

Recommended Posts

Hello all,

I tried to make some rewrite for my URLs.

I tried this:

RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteRule ^\.htaccess$ - [F]

RewriteRule ^test-page-([0-9]+)-[-a-zA-Z]+\.php$ /test.php?id=$1

This should match urls like:

test-page-23-this-is-just-a-text.php

It works. Ok. But now I want to match urls like:

test-page/23/this-is-just-a-text.php

Ok. 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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.