Skip to content

Instantly share code, notes, and snippets.

@ozh
Last active October 13, 2022 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozh/1d078e9cbd5f9757be3bb32011c48461 to your computer and use it in GitHub Desktop.
Save ozh/1d078e9cbd5f9757be3bb32011c48461 to your computer and use it in GitHub Desktop.
YOURLS plugin: keep query string
<?php
/*
Plugin Name: Keep Query String
Description: Adds short URL query string, if any, to the long URL
Version: 0.1
Author: Ozh
*/
yourls_add_filter('redirect_location', 'ozh_kqs');
function ozh_kqs($url){
if (yourls_is_GO()) {
$url = yourls_add_query_arg($_GET, $url);
}
return $url;
}
// well I think that's it
@rinogo
Copy link

rinogo commented Mar 20, 2020

@congthien I've released an updated version of the plugin: YOURLS Keep Query String

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment