<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /index.php?args=%{REQUEST_URI} [L]
</IfModule>
これにより、クエリ文字列が変数に入れられ、ページで として使用できます$_GET['args']
。したがって、次のように呼び出します。
http://www.testsite.com/flowers/Pune/Carnation
しかし、あなたは実際にページを表示しています:
http://www.testsite.com/?args=flowers/Pune/Carnation
その後、$_GET['args']
好きなように取得して解析できます。
$args = explode('/', $_GET['args']);
array_shift($args); // this take an empty value off of the first item in the array
$dispatch = $args[0];
$city = $args[1];
$type = $args[2];
等々。