url 使用 .htaccess 为不同的 url 重写
url rewriting using .htaccess for different urls
我正在尝试在我的网站上使用 .htaccess 创建干净的 url 我有这个
RewriteEngine on
RewriteRule ^([^/]*)/$ /full_posts.php?permalink= [L]
RewriteRule ^category/([^/]*)/$ /search.php?category= [L]
第一个工作正常,但第二个不工作,我正在一个接一个地写。请帮助!
您要查找的规则是:
RewriteRule ^([^/]*)/?$ /full_posts.php?permalink= [L]
RewriteRule ^category/([^/]*)/?$ /search.php?category= [L]
在这两种情况下,我都将尾部斜杠设为可选。
您可以测试您的规则:
http://htaccess.madewithlove.be/
我正在尝试在我的网站上使用 .htaccess 创建干净的 url 我有这个
RewriteEngine on
RewriteRule ^([^/]*)/$ /full_posts.php?permalink= [L]
RewriteRule ^category/([^/]*)/$ /search.php?category= [L]
第一个工作正常,但第二个不工作,我正在一个接一个地写。请帮助!
您要查找的规则是:
RewriteRule ^([^/]*)/?$ /full_posts.php?permalink= [L]
RewriteRule ^category/([^/]*)/?$ /search.php?category= [L]
在这两种情况下,我都将尾部斜杠设为可选。
您可以测试您的规则: http://htaccess.madewithlove.be/