次の.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]
私は間違いを犯しましたか?助けはありますか?