且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

htaccess的URL重定向

更新时间:2023-09-12 08:33:34

您可以使用mod_rewrite的。

You could utilise mod_rewrite.

RewriteEngine On
RewriteRule ^blog/index\.php/weblog/rss_2\.0/$ /feed/ [R=302]

这是应该的URL转发到/进料/在同一个域中的要求进来的。一旦你很高兴它的工作,你可以改变302到301。

That should forward the URL to /feed/ on the same domain as the request came in on. Once you're happy it's working you can change the 302 to 301.