Skip to content

Instantly share code, notes, and snippets.

@davidalexander
Created July 16, 2011 15:23
Show Gist options
  • Select an option

  • Save davidalexander/1086441 to your computer and use it in GitHub Desktop.

Select an option

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);
}
?>
@davidalexander

Copy link
Copy Markdown
Author

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