我正在尝试将博客文章重定向到特定的URL https://example.com/detailblog.php?my-title&s=9
到https://example.com/my-title/9
RewriteEngine on
RewriteRule ^/blog/([0-9]+)\.php /blog/detailblog/.php?s=$1
RewriteEngine on
RewriteRule ^/blog/([0-9]+)\.php /blog/detailblog/.php?s=$1
它不起作用。
答案 0 :(得分:0)
我建议阅读有关https://aloneonahill.com/blog/url-rewriting-for-beginners/之类的URL重写的入门指南,并使用诸如https://htaccess.madewithlove.be/之类的测试工具。
根据您提供的示例,在我看来您似乎还不了解语法。