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.
我想用 htaccess 重定向所有传入链接
/2011/05/16/xps-15z-dell-laesst-sich-vom-apple-macbook-inspirieren/
到
/xps-15z-dell-laesst-sich-vom-apple-macbook-inspirieren/
正则表达式的外观如何?
这应该做的工作
RewriteRule ^/[0-9]+/[0-9]+/[0-9]+/(.*)/?$ /$1
甚至这个
RewriteRule ^/\d+/\d+/\d+/(.*)/?$ /$1