Skip to content

docs: .htaccess and lazy loaded routes (fix #2753) #2755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/fr/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Ne vous inquiétez pas. Pour résoudre ce problème, il vous suffit d'ajouter un
### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down
3 changes: 3 additions & 0 deletions docs/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Not to worry: To fix the issue, all you need to do is add a simple catch-all fal
#### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down
3 changes: 3 additions & 0 deletions docs/ja/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ history モードを使用する時は、URL は "普通" に見えます e.g. `
#### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down
3 changes: 3 additions & 0 deletions docs/kr/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ const router = new VueRouter({
#### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down
3 changes: 3 additions & 0 deletions docs/ru/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ const router = new VueRouter({
#### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down
3 changes: 3 additions & 0 deletions docs/zh/guide/essentials/history-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ const router = new VueRouter({
#### Apache

```apache
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Expand Down