问题从HTML调用PHP

时间:2011-05-24 04:22:33

标签: php html scripting

我在php中编写了类似的代码

<a href="http://localhost/contactus.html" title="CONTACT US" > CONTACT US</a>

右边,它应该转到htaccess文件并查看是否有重写。 我的.htaccess文件是

RewriteRule ^([^/]+).html /index.php?file=$1 [NC]

所以我认为联系人应该是$ 1因此file = contactus 它应该调用

http://localhost/index.php?file=contactus

但它没有发生。

我检查了htaccess重写工作正常并启用。

请帮忙。谢谢

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteRule ^(.*).html$ index.php?file=$1 [NC][L]