我该怎么做 htaccess
重写以下url结构:
http://example.com/detail.php?id=polo&categ=wears
到
http://example.com/wears/polo/
我试过下面的代码,但对我不起作用。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(.+)/(admin|css|fonts|ico|include|js|images|img|products|slide)/(.*)$ $2/$3 [L]
RewriteRule ^(.*)/(.*)/$ detail.php?id=$1&categ=$2
</IfModule>
2条答案
按热度按时间31moq8wy1#
试试这个
laawzig22#
当我在url中包含尾部斜杠时,您的代码对我很有用。
工作->
http://example.com/wears/polo/
不工作->http://example.com/wears/polo
此外,还需要将斜杠字符从.*
表情。