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

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

如何編寫(xiě) .htaccess 以將所有請(qǐng)求轉(zhuǎn)發(fā)到它們發(fā)出的任何子文件夾中的 index.php

如何編寫(xiě) .htaccess 以將所有請(qǐng)求轉(zhuǎn)發(fā)到它們發(fā)出的任何子文件夾中的 index.php

PHP
紅糖糍粑 2023-04-21 10:14:06
我希望每個(gè)請(qǐng)求都被轉(zhuǎn)發(fā)到 index.php,但尊重請(qǐng)求是在哪個(gè)子文件夾中進(jìn)行的。我可以讓它們?nèi)哭D(zhuǎn)到根 index.php,但不是特定子文件夾中的 index.php。示例:site.com/testurl > site.com/index.phpsite.com/admin/testurl > site.com/admin/index.phpsite.com/randomname/randomname > site.com/randomname/index.php我不想對(duì)任何子文件夾進(jìn)行硬編碼以使其保持動(dòng)態(tài)。目前,我將其作為我的 .htaccess 文件:DirectoryIndex index.php# enable apache rewrite engineRewriteEngine onRewriteCond %{HTTPS} offRewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]# Deliver the folder or file directly if it exists on the serverRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-d# Push every request to index.phpRewriteRule ^(.*)$ index.php [QSA]額外功勞(不確定 .htaccess 是否可行):讓它知道 index.php 是否在子目錄中,如果不在則回退到根目錄 index.php
查看完整描述

1 回答

?
智慧大石

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

# Determines whether the request doesn't end with index.php:

RewriteCond %{REQUEST_URI} !/index.php$


# Redirect to the requested path, followed by index.php:

RewriteCond %{REQUEST_FILENAME} !-f

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


RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_URI} !/index.php$

RewriteRule ^(.*) /index.php [L]


查看完整回答
反對(duì) 回復(fù) 2023-04-21
  • 1 回答
  • 0 關(guān)注
  • 148 瀏覽

添加回答

舉報(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)