我正在尝试使用htaccess进行URL重写,它适用于本地但生产失败。我的主人是1and1。
我的网址是:
https://website.com/service.php?id=100&title=page-title
我想要 https://website.com/service/100/page-title.html
我在我的.htaccess中使用它
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^service/([^/]*)/([^/]*)\.html$ /service.php?id=$1&title=$2 [L]
有关此错误的任何想法?
答案 0 :(得分:0)
我发现错误,需要在.htaccess中添加Options -MultiViews
THX