如何将网址重定向到特定网址

时间:2019-05-06 10:24:49

标签: php .htaccess url-redirection

我正在尝试将博客文章重定向到特定的URL https://example.com/detailblog.php?my-title&s=9https://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

它不起作用。

1 个答案:

答案 0 :(得分:0)

我建议阅读有关https://aloneonahill.com/blog/url-rewriting-for-beginners/之类的URL重写的入门指南,并使用诸如https://htaccess.madewithlove.be/之类的测试工具。

根据您提供的示例,在我看来您似乎还不了解语法。