mirror of https://github.com/zulip/zulip.git
web: Save a needless 301 redirect from /hello to /hello/.
This commit is contained in:
parent
a1570ff3dd
commit
eb81e62eaa
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"),
|
||||
|
|
Loading…
Reference in New Issue