Skip to content

Instantly share code, notes, and snippets.

@tru2dagame
Created October 23, 2014 06:58
Show Gist options
  • Save tru2dagame/5b7c8c1aa29507fd0ad0 to your computer and use it in GitHub Desktop.
Save tru2dagame/5b7c8c1aa29507fd0ad0 to your computer and use it in GitHub Desktop.
apache htaccess for url query string

.htaccess Example for URL liks this

www.xxx.com/guest/s/default/?id=baba&query=sth

.htaccess

# apache rewrite rule
RewriteEngine On
RewriteCond $1 !^(index\.php|rewrite\.php)
RewriteRule ^guest/s/([^/]*)/(.*)$ rewrite.php?site=$1&$2 [QSA]
# QSA(追加查询字符串)

index.php

<?php
echo "<pre>"; print_r($_GET);
?>

show:

Array
(
    [site] => default
    [id] => baba
    [query] => sth
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment