Jump to content

Letters & Numbers


graham23s

Recommended Posts

Hi Guys,

 

I normally use this code in my .htaccess file:

 

Options +FollowSymLinks 
RewriteEngine On 
RewriteCond %{SCRIPT_FILENAME} !-f 
RewriteRule ^[^/]+-([0-9]+)\.html$ product-information.php?id=$1 [QSA,L]
RewriteCond %{SCRIPT_FILENAME} !-f 
RewriteRule ^([0-9]+)-[^/]+\.html$ category.php?cat-id=$1 [QSA,L]

 

My product id's were just numeric values, but i have added some products with id's that look like: UVWL2BUAL720R which contain random number and letters, i'm not sure the proper syntax to use in the .htaccess file.

 

any help would be appreciated guys.

 

thanks

 

Graham

Link to comment
Share on other sites

So the only change is that rather than being only 0-9 you now have letters? All you should have to do is add A-Z to your character range. If only certainly letters are used you could also just add the individual characters.

 

Options +FollowSymLinks 
RewriteEngine On 
RewriteCond %{SCRIPT_FILENAME} !-f 
RewriteRule ^[^/]+-([A-Z0-9]+)\.html$ product-information.php?id=$1 [QSA,L]
RewriteCond %{SCRIPT_FILENAME} !-f 
RewriteRule ^([A-Z0-9]+)-[^/]+\.html$ category.php?cat-id=$1 [QSA,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.