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.
当我错过 URL 的拼写或单击网页上的死(子)链接时,我经常会看到默认/规范化/标准页面告诉我我想访问的站点可能不存在。
我可以在不使用 JavaScript 的情况下将其包含在我的网站中吗?有没有办法简单地将其包含在现有的一组文件和文件夹中?
这是通过您的托管公司或通过 .htaccess 文件排序的:
Options +SymLinksIfOwnerMatch RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L]
阅读自定义 404 页面或错误的 URL 重定向。