Skip to content

Instantly share code, notes, and snippets.

@davidalexander
Created July 16, 2011 15:23
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 davidalexander/1086441 to your computer and use it in GitHub Desktop.
Save davidalexander/1086441 to your computer and use it in GitHub Desktop.
Make links within a website root relative
<?php
function make_href_root_relative($input) {
return preg_replace('!http(s)?://' . $_SERVER['SERVER_NAME'] . '/!', '/', $input);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment