我捆绑了我的一个项目并且工作正常。但是当在路由/关于刷新时,它会显示在此服务器上找不到请求的URL / about。但是,当我在本地主机上从Web服务器上执行此操作时,它在刷新和前进/后退按钮上工作正常。我正在使用react-router进行客户端路由。
继承客户端路由,但我怀疑它的问题
Router.run(routes, Router.HistoryLocation, function (Handler) {
React.render(<Handler/>, app);
});
我的路线就在那里:
let routes = (
<Route>
<Route name = "App" path="/" handler = {App}>
<Route name="About" path="/about" handler = {About}/>
<DefaultRoute name="Projects" handler = {Projects}/>
</Route>
</Route>
);
继承我认为我破产的APACHE:
<Directory /var/www/>
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
Require all granted
#RedirectMatch ^/$ /apache2-default/
</Directory>
kkotwal.me.conf:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#
ServerName kkotwal.me
ServerAlias www.kkotwal.me
ServerAdmin webmaster@localhost
DocumentRoot /var/www/kkotwal.me/public_html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
答案 0 :(得分:57)
嘿,这实际上很常见。
您需要让apache服务器忽略任何嵌套路径并将所有请求/*
发送到root,这样才会发生什么。这样,您的前端JavaScript可以在客户端获取路由并显示正确的视图。
这有时被称为&#34; HTML5模式&#34;在不同的网络服务器中。
在apache中,执行此操作的方法是添加如下规则:
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
RewriteRule ^ /index.html [L]
这样做是为了告诉Apache提供任何存在的文件,但如果它们不存在,只需提供/index.html
而不是404。
答案 1 :(得分:0)
如果是laravel,则需要渲染相同的视图,其中为反应文件写入所有路径。 Laravel路线写成:
Route :: get('{url}',function(){ 返回视图('welcome'); }) - &gt; where(['url'=&gt;'。*']);
欢迎刀片文件是:
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<link href="{{asset('css/app.css')}}" rel="stylesheet" type="text/css">
</head>
<body>
<div id="root"></div>
<script src="{{asset('js/app.js')}}" ></script>
</body>
</html>
<Route>
<Route name = "App" path="/" handler = {App}>
<Route name="About" path="/about" handler = {About}/>
<DefaultRoute name="Projects" handler = {Projects}/>
</Route>
因此每次刷新路线时,它都会在app.js文件中显示欢迎刀片及其各自的路径