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.
我们正在运行一个 WordPress 网站,为了方便我们的供应商使用,我们希望登录页面显示在:
http://my.website.com/
原始网址是http://website.com/login
这可能吗,还是我必须创建一个新页面来托管在http://my.website.com上,然后想办法从那里登录到http://website.com?
您可以使用 mod_rewrite 执行此操作。将这些规则(在您已经拥有的任何 wordpress 规则之上)放在文档根目录的 htaccess 文件中:
RewriteEngine On RewriteCond %{HTTP_HOST} !^www [NC] RewriteCond %{HTTP_HOST} ^([^.]+)\.website.com$ [NC] RewriteRule ^$ /login [L]