お世話になっております。
/test/index.php?foo=1
のようにして適当な値をGETで送るには、下記のRewriteRuleをどのように書き換えれば(または追記・削除すれば)宜しいでしょうか?
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !.[^/.]+$
RewriteRule .* %{REQUEST_URI}/ [R=301,L]
RewriteRule test/(.)/(.)/(.)/ test/index.php?hoge=$1&fuga=$2&piyo=$3 [L]
RewriteRule test/(.)/(.)/ test/index.php?hoge=$1&fuga=$2 [L]
RewriteRule test/(.)/ test/index.php?hoge=$1&fuga=000 [L]
RewriteRule test/$ test/index.php?hoge=0000&fuga=000 [L]
初学者の為、色々と分かってない部分が多いですが何卒ご教授頂ければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。