您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何解決React使用browserHistory項目訪問404的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
最近項目里面用到了React但是發布到iis站點之后,路由地址 刷新訪問直接404錯誤。查閱資料之后發現是iis缺少配置URL重寫 的問題導致的。下面我們來圖形化配置,簡單的配置下IIS
打開IIS使用 Web平臺安裝程序
搜索 url
關鍵字,您會看到
直接安裝
關掉IIS 重新打開IIS在站點右邊的控制面板可以看到一個URL重寫的功能
新增配置如下
也可以直接 使用我的配置
配置如下 關鍵節點是: rewrite
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="ReactRouter" patternSyntax="ECMAScript" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_METHOD}" pattern="^GET$" /> <add input="{HTTP_ACCEPT}" pattern="^text/html" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> </conditions> <action type="Rewrite" url="/index.html" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
附:其他http-server配置說明 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文件,然后加上一句話讓他定位回來
<error-page> <error-code>404</error-code> <location>/index.html</location> </error-page>
Apache
.htaccess
文件配置如下
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule . /index.html [L] </IfModule>
感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何解決React使用browserHistory項目訪問404的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。