これは私の現在のhtaccessスクリプトです
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteRule ^home$ /index.php?hook=home [NC]
しかし、$_GET 変数を追加すると問題が発生します。たとえば、次のようになります。
www.domain.com/home&showPoll=1
出力:
Not Found The requested URL /home&showPoll=1 was not found on this server.
それを修正する方法はありますか?ありがとう