Skip to content

Instantly share code, notes, and snippets.

@ErMandeep
Created January 31, 2019 10:14
Show Gist options
  • Save ErMandeep/89ffbd955614abb821129a678c7d7271 to your computer and use it in GitHub Desktop.
Save ErMandeep/89ffbd955614abb821129a678c7d7271 to your computer and use it in GitHub Desktop.
rewite url from http://localhost/realwed/couples.php?username=demo to http://localhost/realwed/couples/demo
rewite url from http://localhost/realwed/couples.php?username=demo to http://localhost/realwed/couples/demo
.htaccess // create file
RewriteEngine On
RewriteRule ^([a-z0-9]+)$ couple.php?username=$1 [QSA,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment