Htaccess模式重写规则在服务器上不工作


htaccess mode rewrite rule not working on server

我有一些url重写在我的htaccess文件都在本地工作良好,但在服务器上只是规则一个页面导致问题(它不工作)。这是我的htaccess规则

#allStroes
RewriteRule ^allstores?$ allstores.php [L,QSA]
RewriteRule ^allstores/([^/.]+)/?$ allstores.php?type=$1 [L,QSA]
RewriteRule ^allstores/([^/.]+)/([^/.]+)/?$ allstores.php?type=$1&title=$2 [L,QSA]

我做错了什么吗?请帮助

您可能忘记添加

RewriteEngine On