Skip to content

Instantly share code, notes, and snippets.

@filipelperes
Created June 3, 2022 19:45
Show Gist options
  • Save filipelperes/088b8fc8dcea5d7134d7b9195b854dca to your computer and use it in GitHub Desktop.
Save filipelperes/088b8fc8dcea5d7134d7b9195b854dca to your computer and use it in GitHub Desktop.
URL Sem Extensão PHP
<?php
if(isset($_GET['url'])) {
if(file_exists($_GET['url']).'.html') {
include($_GET['url'].'.html');
} else {
include('404.html');
}
} else {
include('home.html');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment