react-router 在生产和浪涌部署中不起作用

IT技术 javascript reactjs react-router react-router-dom
2021-04-03 00:54:10

我的 React 应用程序在 localhost 上运行良好,但是当我在 gh-pages 或 Surge 中部署它后,它不会让我使用 URL 在页面之间移动。

用户可以通过点击右上角的菜单项进入注册页面。但是如果用户使用http://chat.susi.ai/signup/ URL,它会给出 404 页面

我尝试了互联网上的几种解决方案,但没有奏效。

下一个问题是:我创建了一个 404 页面以在用户尝试移动到损坏的链接时显示。它在 localhost 中工作正常。但不在生产中。我尝试了这个解决方案,但没有任何改变。

这是我的 index.js 文件的一部分

const App = () => (
    <Router history={hashHistory}>
        <MuiThemeProvider>
            <Switch>
                <Route exact path="/" component={ChatApp} />
                <Route exact path="/signup" component={SignUp} />
                <Route exact path="/logout" component={Logout} />
                <Route exact path="/forgotpwd" component={ForgotPassword} />
                <Route exact path="*" component={NotFound} />

            </Switch>
        </MuiThemeProvider>
    </Router>
);

ReactDOM.render(
    <App />,
    document.getElementById('root')
);

如果有人可以为我的问题提出带有示例代码的好的解决方案,那将对我非常有帮助。

6个回答

发生这种情况是因为用户在index.html直接访问这些 URL 时没有得到引导您的应用程序的服务。

对于激增,您可以添加一个200.html文件文件包含与index.html您正在部署的内容相同的内容(或只是将其重命名为200.html) - 然后将在用户访问的任何与静态文件不对应的 URL 上提供给用户,允许您的应用程序开始运行。


编辑:看起来您正在使用create-react-app. 这在您在本地开发时有效,因为create-react-appreact-scripts包处理您index.html作为这些请求的后备。

react-scripts用户指南对部分如何部署到GitHub的页数时处理这种surge.sh(如上)。

这个答案对我不起作用,但@NisugaJayawardana 链接起作用了。
2021-05-23 00:54:10
实际上,在访问子路径时提供 index.html 文件工作正常:-)
2021-05-27 00:54:10
2021-06-20 00:54:10

在构建文件夹中用作 Web 服务器.htaccess的情况下更改文件apache对我有用:

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
我们是否将 .htaccess 文件放在构建文件夹中?
2021-05-28 00:54:10
2021-06-03 00:54:10
是的。添加.htaccess您的index.html居住地
2021-06-16 00:54:10

此问题发生在所有单页应用程序(例如 react、angular)上。请按照以下步骤解决(仅 4 个浪涌):

  1. npm run build
  2. cd build
  3. cp index.html 200.html
  4. surge

当在静态服务器上部署构建时,在我们的 React 应用程序中,如果我们使用了HTML5 pushState history API底层使用的路由器(例如,带有 的 React 路由器browserHistory),静态文件服务器可能无法加载路由和适当的屏幕并显示404 - Not Found错误.

create-react-app 部署文章中所述

当 ex: 的路径有新的页面加载时/todos/42,服务器会查找该文件build/todos/42但没有找到。服务器需要配置为/todos/42通过服务响应请求index.html

因此,为了在使用Nodewith时使路由正常工作Express,可以添加如下配置服务器index.js

const express = require('express');
const path = require('path');
const app = express();

app.use(express.static(path.join(__dirname, 'build')));

// PATH CONFIGURATION TO RESPOND TO A REQUEST TO STATIC ROUTE REQUEST BY SERVING index.html
app.get('/*', function (req, res) {
  res.sendFile(path.join(__dirname, 'build', 'index.html'));
});

app.listen(5000);
console.log('Server is listening on http://localhost:5000');

如果您使用的是Apache HTTP Server,则需要React APP文件夹中创建一个.htaccess文件public如下所示:

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

build运行时它会被复制到文件夹中npm run build

嗨@Rahul gupta,我正在使用 nginx 服务器,我应该在哪里添加类似的修复程序?
2021-05-31 00:54:10

我有同样的问题。我很容易地解决了它...... :)

我在我的前端(Create-React-App)和一个快速后端使用了react。在开发模式下,一切都很好,但是当我切换到生产版本时,我的react路由中出现了一些路由问题。经过长时间的调查,我发现问题出在提供 index.html 文件的服务器端。

它应该在所有服务器端路由之后,但在所有 app.post 处理程序之前。换句话说,以下行应该放在所有之后app.gets和之前app.posts

// PRODUCTION
App.get('*', (req, res)=>{
res.sendFile(path.resolve(where, the, index.html, is))
})