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 网站。它使用页面和帖子,但都以编程方式包含在核心模板中。我不希望用户意外访问单个帖子(即使这不太可能发生)。我宁愿也不必使用 404 模板,因此将每个页面重定向到主页会很棒。在不干扰默认 .htaccess 规则的情况下,这很容易做到吗?
尝试使用这个插件。 它允许重定向所有 URL。
将此行代码添加到您的 htaccess 文件中:
redirect 301 / http://www.yoursiteurl.com/
将“yoursiteurl”替换为您的实际域。
我最终使用了这个插件并手动重定向每个页面,从而使不相关的页面抛出 404 错误。这不是我想要的,但最终它是最佳实践。