我需要为页面制定重写规则,但它不起作用。我确实为 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>
但是当我输入这个网址时:localhost/school/str-webservices/eindopdracht/index.php?output=html&house=all&info=full
它保持这种状态,但它应该类似于:localhost/school/str-webservices/eindopdracht/gameofthrones/full/all/html
我究竟做错了什么?
提前致谢,
标记