1

我有以下.htaccess文件

Options +FollowSymLinks
RewriteEngine On
Options -Indexes
RewriteRule   ^index/?$   index1.php  [NC]
RewriteRule   ^index/(.*\.html)/?$   index1.php?load=$1  [NC,L]
RewriteRule   ^page/?$   page.php  [NC]
RewriteRule  ^page/([0-9]+)/([a-z]+)/([{a-z}{0-9}{\-\}]+)/?$   page.php?id=$1&cat=$2&title=$3 [NC,L]

并且它在我的本地主机中完美地工作。但不适用于服务器,

以下.htaccess在我的服务器上运行良好

RewriteEngine on
RewriteRule testpage\.html http://www.google.com [R]

我犯了什么错误吗?有什么帮助吗?

4

0 回答 0