web: Save a needless 301 redirect from /hello to /hello/.

This commit is contained in:
Alex Vandiver 2023-03-23 02:49:21 +00:00 committed by Tim Abbott
parent a1570ff3dd
commit eb81e62eaa
6 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@
<div class="feature-intro">
<h1 class="center"> Make Zulip the communication hub for your class. </h1>
<p>
<a href="/hello">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Post lecture notes and announcements, answer students questions, and coordinate with teaching staff all in one place.
<a href="/hello/">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Post lecture notes and announcements, answer students questions, and coordinate with teaching staff all in one place.
</p>
</div>

View File

@ -45,7 +45,7 @@
<div class="feature-intro">
<h1 class="center"> Make Zulip the communication hub for your event. </h1>
<p>
<a href="/hello">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Post presentations and announcements, host Q&A sessions, and coordinate among organizers.
<a href="/hello/">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Post presentations and announcements, host Q&A sessions, and coordinate among organizers.
</p>
</div>

View File

@ -47,7 +47,7 @@
<div class="feature-intro">
<h1 class="center"> Make Zulip the communication hub for your open-source community. </h1>
<p>
<a href="/hello">Zulip</a> is the only <a href="/features">modern
<a href="/hello/">Zulip</a> is the only <a href="/features">modern
team chat app</a> that is <a href="/why-zulip">ideal</a> for both
live and asynchronous conversations. Discuss issues, pull requests
and feature ideas, engage with users, answer questions, and

View File

@ -47,7 +47,7 @@
<div class="feature-intro">
<h1 class="center"> Make Zulip the communication hub for your research community. </h1>
<p>
<a href="/hello">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Coordinate with collaborators, post questions and ideas, and learn from others in your field.
<a href="/hello/">Zulip</a> is the only <a href="/features">modern team chat app</a> that is <a href="/why-zulip">ideal</a> for both live and asynchronous conversations. Coordinate with collaborators, post questions and ideas, and learn from others in your field.
</p>
</div>

View File

@ -64,7 +64,7 @@ class PorticoDocumentationSpider(BaseDocumentationSpider):
name = "portico_documentation_crawler"
start_urls = [
"http://localhost:9981/hello",
"http://localhost:9981/hello/",
"http://localhost:9981/history",
"http://localhost:9981/plans",
"http://localhost:9981/team",

View File

@ -78,7 +78,7 @@ HELP_DOCUMENTATION_REDIRECTS: List[URLRedirect] = [
LANDING_PAGE_REDIRECTS = [
# Add URL redirects for corporate landing pages here.
URLRedirect("/new-user/", "/hello"),
URLRedirect("/new-user/", "/hello/"),
URLRedirect("/developer-community/", "/development-community"),
URLRedirect("/for/companies/", "/for/business"),
URLRedirect("/for/working-groups-and-communities/", "/for/communities"),