I'm trying to redirect a URL that looks like
'accommodation/destination.php?code=108459&destination=Yang+Chum+Noi'
The regex I'm using:
(^accommodation/destination\.php\?code=([0-9]+)&destination=([^/]+)$)
...works fine in my regex tester but when I use it in the .htaccess
file it doesn't work.
Am I missing something here?