Replies: 1 comment 3 replies
-
|
Those query-string plugins don't do what you want because you want to pass along more than just a query string. I'd bet a plugin that does do this exists, or could be written… but honestly, the simplest solution would be to implement that kind of redirect at the HTTPd (Apache, Nginx, Caddy, whatever) layer. It's just a prefix, and what you lose in convenience of managing them from a YOURLS GUI you'd more than make up for in performance. Not to mention the development time saved. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just found this great software, but am running into some troubles, and hope someone can shed some light for me...
I have setup a redirect
http://mydom.com/ABCThis will redirect to a site that I have to pass some QS to, but it is also progrmaticly adding the php file on to the url, so my ORG url should be something like
http://otherdom.com/xyz.php?qs1=testMy current redirect does
http://mydom.com/ABC -> http://otherdom.comThis does infact take me to the root as expected....but when I now try to pass this onto my shorturl
http://mydom.com/ABC/xyz.php?qs1=testI am not redirected and brought to a 403 Forbidden on my own server, not the "hoped" for location of -
http://otherdom.com/xyz.php?qs1=testI'm assuming it can't handle the
I have tried using
but none of these seemed to make the change I needed...
Hope someone has an idea, or if im barking up the wrong tree and this will never work...
basically i want to be able to accept
/xyz.php?qs1=testbeing passed onto the short url and it redirect to
http://otherdom.com/xyz.php?qs1=testThanks
Karl
Beta Was this translation helpful? Give feedback.
All reactions