Last active
March 5, 2019 15:12
-
-
Save lddsb/d789ae403c4cc5d1b05f74fdb8473289 to your computer and use it in GitHub Desktop.
Apache2 uses the Alias setting to open the Vista mode Vue project 404 solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost _default_:443> | |
| ServerName example.com | |
| ... | |
| Alias /example "/path/to/vue/dist" | |
| <Directory /path/to/vue/dist> | |
| AllowOverride all | |
| Require all granted | |
| FallbackResource /index.html | |
| </Directory> | |
| ... | |
| </VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost _default_:443> | |
| ServerName example.com | |
| ... | |
| Alias /example "/path/to/vue/dist" | |
| <Directory /path/to/vue/dist> | |
| AllowOverride all | |
| Require all granted | |
| FallbackResource /example/index.html | |
| </Directory> | |
| ... | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment