各类服务端配置react

IIS:

打开IIS使用 Web平台安装程序 安装URL重写工具2.0

添加空白规则:
各类服务端配置react_第1张图片




应用即可

nginx

server {
  server_name react.yahui.wang
  listen 80;
 
  root /wwwroot/ReactDemo/dist;
  index index.html;
  location / {
    try_files $uri /index.html;
  }
}

Tomcat

找到conf目录下的web.xml文件,然后加上一句话让他定位回来


  404
  /index.html

Apache

.htaccess 文件配置如下


 
 RewriteEngine On
 RewriteBase /
 RewriteRule ^index\.html$ - [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-l
 RewriteRule . /index.html [L]
 

你可能感兴趣的:(react,github)