Sorry Jason - my fault. In my first post I said Lodgename, but when i looked at it I realised the field was called 'GSG_URL'.
So:
RewriteRule index/GSG_URL/(.*)/ index.php?GSG_URL=$1
RewriteRule index/GSG_URL/(.*) index.php?GSG_URL=$1
Gets me to:
http://lodges.goodsafariguide.com/lodgedetails/index/GSG_URL/africanhorsebacksafaris/
And
RewriteRule index/(.*)/ index.php?GSG_URL=$1
RewriteRule index/(.*) index.php?GSG_URL=$1
Gets me to:
http://lodges.goodsafariguide.com/lodgedetails/index/africanhorsebacksafaris/
But is it possible to get to:
Gets me to:
http://lodges.goodsafariguide.com/lodgedetails/africanhorsebacksafaris/
Or does it always need to include the page itself (e.g. index)?