<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[nginx 如何代理VUE history模式路由]]></title><description><![CDATA[<p dir="auto">nginx配置如下：</p>
<pre><code>server {
   listen       8022;
   server_name  _;
   root /path/path;
   index index.html;
   location / {
     index index.html index.htm;
     try_files $uri $uri/ @fallback;                                                                       
   }
   location @fallback {
     rewrite ^.*$ /index.html break;
   }
 }
</code></pre>
]]></description><link>http://an.forum.genostack.com/topic/332/nginx-如何代理vue-history模式路由</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 09:37:49 GMT</lastBuildDate><atom:link href="http://an.forum.genostack.com/topic/332.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 23 Jun 2021 06:00:42 GMT</pubDate><ttl>60</ttl></channel></rss>