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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.