Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个网址:
http://www.mysite.com/pronostici/data/2012/aprile-2012/7216-prono-02-04-2012
我已经重定向到
http://www.mysite.com/pronostici/data_incontri/2012-04-02
我将如何在 .htaccess 中执行此操作?
谢谢
如果我正确理解您的源 URL,您可以使用末尾的日期来构建您的目标 URL。所以,这样的事情应该有效:
RewriteEngine On RewriteRule pronostici/data/.*/\d+-prono-(\d+)-(\d+)-(\d+)$ http://www.mysite.com/pronostici/data_incontri/$3-$2-$1 [R=301,L]