Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
htaccessファイルに以下のようなリライトモジュールを作りたい
http://example.com/index.php?tel=604-567-0909&cat=1&sort=2
に
http://example.com/604-567-0909/?cat=1&sort=2
そう$_GETなります
$_GET
$_GET[tel] = 604-567-0909 $_GET[cat] = 1 $_GET[sort] = 2
このルールはどのようになりますか?
telフィールドで数字とダッシュのみを受け入れたい場合は、次のようになります。
tel
RewriteRule ^/?([0-9\-]+)/$ index.php?tel=$1 [L]
クエリ文字列の他の値は自動的に引き継がれ、このルールはそれらがなくても問題なく機能します。