farmkd 发表于 2019-12-4 10:50:19

智慧农场服务器配置文件配置

私有部署开源版配置文件
apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ -
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html
</IfModule>nginx
location / {
try_files $uri $uri/ /index.html;
}Internet Information Services (IIS)
1.安装 IIS UrlRewrite
2.在你的网站根目录中创建一个 web.config 文件,内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
    <rewrite>
      <rules>
      <rule name="Handle History Mode and custom 404/500" stopProcessing="true">
          <match url="(.*)" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
      </rule>
      </rules>
    </rewrite>
</system.webServer>
</configuration>

页: [1]
查看完整版本: 智慧农场服务器配置文件配置