我部署了一个从git存储库获取更改的服务。
我想将其更改为从其他存储库获取。
我更改了本地的ecosystem.json文件并将更改提取到旧存储库,但是当我键入RewriteBase /
# Remove trailing slashes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ $1/ [R=301,L]
# Actually 301 direct all index.php requests
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
# this gets rid of index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
Redirect 301 /old-page /newdir/new-page/?
时,我仍然看到旧的存储库。
如何强制pm2从新存储库中获取?