RewriteRule不工作(通过在线工具)

时间:2013-03-01 03:34:36

标签: .htaccess mod-rewrite

我在.htaccess文件中有这个

## REWRITE DEFAULTS ###
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine on
  RewriteBase /
  RewriteRule lenna/(.*)$ /lenna/output.php?$1= [NC,L]
</IfModule>

我想做:

http://example.com/lenna/311x123

翻译成

http://example.com/lenna/output.php?311x123

但它不起作用。我收到404找不到错误。我已经尝试了这个(http://htaccess.madewithlove.be/)在线.htaccess测试程序,它在那里通过测试并显示重写正常工作。

我在这里缺少什么?

0 个答案:

没有答案