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
https://forums.phpfreaks.com/topic/182497-letters-numbers/
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
https://forums.phpfreaks.com/topic/182497-letters-numbers/#findComment-963210
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.