ページの書き換えルールを作成する必要がありますが、機能しません。apacheのmod_rewriteを有効にしています
これは私の.htaccesファイルです:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^gameofthrones/(full|house|characters)\.(all|Stark|Lannister)\.(html|xml|json)$ index.php?output=$3&house=$2&info=$1
</IfModule>
しかし、このURLを入力すると、localhost / school / str-webservices / eindopdracht / index.php?output = html&house = all&info = full
それはそのままですが、次のようになります:localhost / school / str-webservices / eindopdracht / gameofthrones / full / all / html
私は何が間違っているのですか?
前もって感謝します、
マーク