第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

當(dāng)應(yīng)用程序不在root中時(shí)重定向不起作用

當(dāng)應(yīng)用程序不在root中時(shí)重定向不起作用

PHP
UYOU 2022-08-05 09:29:50
我設(shè)置了.htaccess文件,如果應(yīng)用程序剛剛下載,請(qǐng)重定向到_install文件夾。我遇到的問(wèn)題是,如果將應(yīng)用程序上傳到根文件夾以外的文件夾,則重定向中斷。它嘗試轉(zhuǎn)到根文件夾RewriteEngine on#allow installationRewriteCond %{REQUEST_URI} !^/_install#redirect to _install if vendor does not existRewriteCond %{DOCUMENT_ROOT}/vendor !-d RewriteRule ^(.*) /_install [L,redirect=302]#start application if vendor exists#allow installation to continueRewriteCond %{REQUEST_URI} !^/_installRewriteCond %{DOCUMENT_ROOT}/vendor -d RewriteRule ^(.*) public/$1 [L]因此,如果應(yīng)用程序位于它重定向到的文件夾中,而不是 ./project/_install/project/_install我如何確保無(wú)論應(yīng)用程序位于哪個(gè)文件夾,它都會(huì)從該文件夾中獲取所有內(nèi)容?
查看完整描述

1 回答

?
慕斯王

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個(gè)贊

你可以這樣使用它:


RewriteEngine on


# Determine the RewriteBase automatically/dynamically in env variable BASE

RewriteCond $0#%{REQUEST_URI} ^([^#]*)#(.*)\1$

RewriteRule ^.*$ - [E=BASE:%2]


#allow installation

RewriteCond %{REQUEST_URI} !/_install [NC]

#redirect to _install if vendor does not exist

RewriteCond %{DOCUMENT_ROOT}%{ENV:BASE}vendor !-d 

RewriteRule ^ %{ENV:BASE}_install [L,R=302]


#start application if vendor exists

#allow installation to continue

RewriteCond %{REQUEST_URI} !/_install

RewriteCond %{DOCUMENT_ROOT}%{ENV:BASE}vendor -d 

RewriteRule ^(.*) public/$1 [L]


查看完整回答
反對(duì) 回復(fù) 2022-08-05
  • 1 回答
  • 0 關(guān)注
  • 99 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)