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.
bit.ly 有这样的,如果你这样做
bit.ly/blah+ 它重定向到 bit.ly/info/blah
htaccess 代码将如何寻找复制它(使用加号重定向到相关页面)
您可以使用此mod_rewrite代码来执行此操作:
RewriteEngine on RewriteRule ^([^/]+)\+$ /info/$1 [L,R]