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.
我想重定向
m.sample.com/?articulo=某事
至
http://www.sample.com/camisetas/东西.html
试试这个代码:
RewriteEngine On RewriteCond %{HTTP_HOST} ^m.sample.com$ RewriteRule ^\?articulo=(.*)$ http://www.sample.com/camisetas/$1.html [R=301]