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.
我的问题是:当它包含一个“+”之类的 url 时如何重定向 url,goo.gl以及bit.ly 一个简单的例子 http://goo.gl/gogl+,它将被重定向到http://goo.gl/info/gogl
goo.gl
bit.ly
http://goo.gl/gogl+
http://goo.gl/info/gogl
预先感谢。
您只需要 .htaccess 文件中的这段代码:
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^([^\+]+)\+$ info/$1 [L]