如何在同一域上使用 NODE 和 react.js 运行 next.js

问题描述 投票:0回答:0

我必须同时在同一个域上运行 2 个不同的应用程序。我想将所有请求转发到 localhost:3000,如果 url 包含 /presscenter,如果没有,默认应该是我的 react.js 应用程序。我在这里为 apache 虚拟主机找到了这个:

RewriteEngine On

# Rewrite rule for /presscenter requests
RewriteCond %{REQUEST_URI} ^/presscenter [NC]
RewriteRule ^(.*)$ http://localhost:3000/$1 [P]

# Rewrite rule for all other requests
RewriteCond %{REQUEST_URI} !^/presscenter [NC]
RewriteRule ^(.*)$ /index.html [L]

但同时,如果我想让我的 react.js 应用程序正常工作,我还需要有这个 .htaccess:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://my.website.ge/$1 [R,L]

#php_value short_open_tag 1
RewriteEngine on
Options +FollowSymlinks
ErrorDocument 404 /404.php
RewriteCond %{QUERY_STRING} ^fbclid=(.*)$


RewriteRule  ^pcms/? - [L]

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

这两条规则正在覆盖自己(我猜),并且网站没有得到正确的服务。我应该做哪些改变?

node.js reactjs apache .htaccess next.js
© www.soinside.com 2019 - 2024. All rights reserved.