RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|robots\.txt)
RewriteRule ^(.*)$ index.php?p=$1 [L]
これを使用して、すべてのルーティングをindex.phpに転送します。次のように書き直す場合は、次のようにします。
http:// localhost / folder / method / value
そしてそれは
http:// localhost / folder / method /?f = value
どうすればそれを機能させることができますか?