我在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重写工作正常并启用。
请帮忙。谢谢
答案 0 :(得分:0)
尝试:
RewriteRule ^(.*).html$ index.php?file=$1 [NC][L]