Jump to content

[SOLVED] Beginners problem


StefanRSA

Recommended Posts

Hi... I am a virgin when it comes to mod_rewrite so please bare with me...

 

I have the following:

RewriteRule ^vehicle/([0-9]+)/(.+)/(.+)$ /cars.php?catid=3&subcatid=$1&prov=$2&town=$3 [L]

Its not working and I found the the problem is in the last two vars as it its even including the "/" for the second last var.....

(.+)/(.+)

The reason I want any character for prov and town is because both of them can have either Letters, space or a "-" like:

cars.php?catid=3&subcatid=2&prov=prov name&town=town-name

 

Can anybody please help me in simple language... (I am still very rusty with the high tec words used when people talk about mod_rewrite  :-\

Link to comment
Share on other sites

You should never allow any characters (.*)

RewriteRule ^vehicle/([0-9]+)/([A-Za-z0-9- ]+)/([A-Za-z0-9- ]+)$ cars.php?catid=3&subcatid=$1&prov=$2&town=$3 [L]

 

Use a function in your code to prepare any strings to be used in a url. Then you will know exactly what characters to expect in the url i.e

 

<?php
function prepareUrlText($string) {
// no characters except a-z, 0-9, dash, underscore or space
$blacklistChars = '#[^-a-zA-Z0-9_ ]#';
$string = preg_replace($blacklistChars, '', $string);
$string = trim($string);
$string = preg_replace('#[-_ ]+#', '-', $string);
$string = strtolower($string);		
return $string;
}
?>

 

Link to comment
Share on other sites

If I use it with the forbidden

(.+)

I get no error

RewriteEngine On
RewriteRule ^vehicles/([0-9]+)/(.+)$ /cars.php?catid=3&subcatid=$1&prov=$2 [L]
RewriteRule ^vehicles_for_sale/([0-9]+)$ /cars.php?catid=3&subcatid=$1 [L]

 

But when I use the same code and replace the forbidden

(.+)

with

([A-Za-z0-9- ]+)

do I get an Internal server error

RewriteEngine On
RewriteRule ^vehicles/([0-9]+)/([A-Za-z0-9- ]+)$ /cars.php?catid=3&subcatid=$1&prov=$2 [L]
RewriteRule ^vehicles_for_sale/([0-9]+)$ /cars.php?catid=3&subcatid=$1 [L]

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.