mod_rewriteの履歴
クエリを引き継ぎたい場合の設定
RewriteRule /([^/]+)/([^/]+) index.php?controller=$1&user_name=$2 [QSA,L]
↑ このようにQSAフラグをつけると、
http://example.com/index.php?controller=status&user_name...
のようにきちんとクエリを引き継ぐことができます。
なるほど!
RewriteRule /([^/]+)/([^/]+) index.php?controller=$1&user_name=$2 [QSA,L]
↑ このようにQSAフラグをつけると、
http://example.com/index.php?controller=status&user_name...
のようにきちんとクエリを引き継ぐことができます。
なるほど!