我想通过.htaccess实现一个来自旧URL的重定向:
http://derpiet.de/photos/ireland 到URL:
http://derpiet.de/photos/alben/2013/07/ireland后台的系统是koken (http://koken.me)。
有可能吗?
发布于 2013-07-30 15:52:28
所以,这将会起作用:
RewriteCond %{REQUEST_URI} ^/photos/ireland/$
RewriteRule .* alben/2013/05/ireland [L,R=301]https://stackoverflow.com/questions/17934671
复制相似问题