Forum Moderators: phranque
Requested URL example:
[mysite.com...]
Rewritten URL:
[mysite.com...]
The idea is that the second slash after '200' is actually part of the file path to the image (and should be optional).
Here's my rule:
RewriteRule ^img_resize/(\d+)/(.+)$ scripts/img_resize.php?file=$2&size=$1 [L]
But for some reason, this rule rewrites the example above as if there were no second slash:
[mysite.com...]
What am I doing wrong?
If you wish that second slash to have some "meaning" in your system, I'm afraid you'll need to change your approach to use some other character.
Jim