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.
我得到的人'www.domain.com/home'。我想从名称'/home'中删除。就在 url 上应该离开'www.domain.com'。
'www.domain.com/home'
'www.domain.com'
我测试了 .htaccess 但这不起作用。我看到服务器自动从 URL 中删除“index.html”。一些规则在我的 htaccess 中有效,但在 URL 中替换名称 - 不是。
有人知道如何删除'/home'吗?我整个上午都在寻找解决方案,但没有任何工作......
通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccess的DOCUMENT_ROOT目录下:
httpd.conf
.htaccess
DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteRule ^home/?$ / [L,R=301,NC]