Better explanation ->
Hey there folks i am rather new to writing a .htaccess file and have only went as far to make it rewrite a route for my framework Cabbit.
Now it works for standard urls in my framwork such as http://mysite.com/controller/function/action however it falls on its bum when getting back the url from paypal(part of the framework is payments pro and express checkout) where the return is http://mysite.com/controller/function?token=thistokenfortheuser&PayerID=something
So i need it to come out as
http://mysite.com/controller/function/thistokenfortheuser/something
Also i am not sure if it is possible but it would be terrific for it to be possible that http://mysite.com/eshop/checkout is rewritten to https://mysite.com/eshop/checkout instead though as i said i don't know if this is possible and right now i can do it with php.
Thanks in advance for any help and suggestions.
current .htaccess
Options +FollowSymLinks
Options -Indexes
DirectoryIndex /public/index.php
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) public/index.php?rt=$1 [L]