本当に簡単なリクエスト。URLを次のようにします。
http://localhost/movie/72105
これの代わりに
http://localhost/movie?id=72105
現在、.htaccessファイルでこの設定を行っていますが、機能していないようです。
RewriteEngine on
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([a-z\-]+)$ index.php?id=$1 [L]
</IfModule>
明確にするために、mod_rewriteが正常に機能している場合でも、IDを取得するために使用できますか?:
$_GET['id']
助けてくれてありがとう。