hi koolguyz
Thanks for taking your time to help, but I have to say as a non programmer I've found the advice you posted very difficult to follow, thanksfully though I've managed to do a php redirect which was a lot easier to pull off than the .htaccess redirect.
PHP Code:
<?php $location ="destination url (less id)"; header ('HTTP/1.1 301 Moved Permanently'); header ('Location: '.$location.$id); ?>
I don't even know php, but the above code made sense to me and I managed to pull it off.
the .id was the variable name of the field with numerical values at the end of the url.
|