htaccessには次のルールがあります
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ redirect.php [L]
RewriteRule ^(.*)\.(?!js|css|png)([^.]*)$ redirect.php [L]
クエリ文字列を除いて、すべてが完璧に機能します。
何らかの理由でクエリ文字列が消えます...
私はredirect.phpで次のURLmyweb.com/subscribe?email=blablablaを取得しました私は次の行を持っています:
echo $_GET['email']; //should echo the email
そしてそれは何もエコー
しません...*私はそれがredirect.phpに書き換えられることを確認しました
なぜそしてどのようにそれを修正するのかアイデアはありますか?