I have a htaccess file that rewrites my url to a more friendly url
# '/'.$i.'/'.$company;
RewriteRule ^([0-9]+)/([a-zA-Z0-9\_\-]+)(/?)$ /offer.php?i=$1&company=$2 [NC,L]
this works fine unless in cases like below the page renders perfectly...
/14/barringtons-wedding-cars
/13/beef-and-pudding
/12/banks-printers
however when the name of the client contains say & symbol or any other symbol the url is writen like so......
/15/bella-%26-mr-tom
/17/bonton-hair-%26-beauty-salon
/37/fuego%27s-mexican-restaurant
and all of a sudden the page comes up as 404 not found. Is there anyway around this as I cant seem to fix it?