したがって、3 つの変数 (スラッシュで区切られたもの) を index.php に送信したいのですが、それを機能させることができません。
私のベース URL は localhost:8888/smbo/ です
そして、私は動作しないこのコードを持っています:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /smbo/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9_-]+)/([A-Za-z0-9_-]+)/([A-Za-z0-9_-]+)$ index.php?id=$1&idTwo=$2&idThree=$3
</IfModule>
誰が私を助けることができます?