我一直在网上想知道如何使用 htacces(真的很难学)。当我潜伏在互联网上时,我发现了这个:http ://www.generateit.net/mod-rewrite/
好吧,我插入了我的网址(在本地主机上工作):empresa.com/index.php?p=sub_artigo&id=1&cat=Mercearia
它给了我这个(默认情况下所有选项):http://empresa.com/sub_artigo/5/Mercearia.html
.htacces 代码是这样的:RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ /index.php?p=$1&id=$2&cat=$3 [L]
当我在 php 中生成 url 时
<a href=\"sub_artigo/".$response2['ID_sub_artigo']."/".$response2['url'].".html\">$response2[nome_sub_artigo]</a>
然后,当我单击按钮时,它看起来就像只有 html。示例:http ://s14.postimg.org/wr137fx4x/htacces_error.jpg
知道发生了什么吗?