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.
我想重定向:
domainname.com/instalator(不存在)到 domainname.com/install
使用.htaccess。我怎样才能做到这一点 ?
使用 mod_alias:
Redirect 301 /instalator /install
使用 mod_rewrite:
RewriteEngine On RewriteRule ^/?instalator(/.*)$ /install$1 [L,R=301]
如果您有其他映射/install到资源或某种路由器的重写规则,那么您需要坚持使用 mod_rewrite 并且您必须将上述规则放在任何路由规则之前。
/install