クリーンな URL を使用すると、クエリ文字列が GET 配列に追加されないのはなぜですか? 例えば。を使用/foo/bar?stack=overflow
し、$_GET['stack']
変数が空です。
私はこのコードできれいな URL を実装しています:
$request = rawurldecode($_SERVER['REQUEST_URI']);
// Extracts the index.php file path (eg. /my_app)
// There is no need to specify the path to index.php as the script handles it
$path_to_index = str_ireplace($_SERVER['DOCUMENT_ROOT'].'/', '', $_SERVER['SCRIPT_FILENAME']);
$path_to_index = str_ireplace('/'.basename($_SERVER['SCRIPT_FILENAME']), '', $path_to_index);
// Get rid of the path to index.php
$request = str_ireplace($path_to_index, '', $request);
// Get rid of index.php in the URL
$request = str_ireplace(basename($_SERVER['SCRIPT_FILENAME']), '', $request);
// Our URL is now clean so we can explode
$request = explode('/', $request);
// Delete empty and reindex
$request = array_values(array_filter($request));