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

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

我在使用 htaccess 和 php 開(kāi)關(guān)配置 url 時(shí)感到困惑

我在使用 htaccess 和 php 開(kāi)關(guān)配置 url 時(shí)感到困惑

PHP
慕仙森 2023-10-15 10:45:41
我想用常規(guī)文件編寫(xiě)一個(gè)項(xiàng)目。索引文件有一個(gè) php 代碼,其中 URL 中打開(kāi)的所有文件都是開(kāi)關(guān)。例如:索引.php<?php if(isset($_GET['page'])){   $current_page = isset($_GET['page']) ? $_GET['page'] : '';}else{    $current_page = 'index';}  $result = str_replace(".php","", $current_page);       switch($result){       case 'welcome':         include('sources/welcome.php');       break;       case 'index':         include('sources/index.php');       break;        case 'profile':         // Here is the problem. I want to make Facebook style user profile system         // But the switch can not see profile username because it is working just for page names not usernames       break;    } ?>就像index.php 文件中的代碼一樣,我使用開(kāi)關(guān)來(lái)調(diào)用頁(yè)面。但當(dāng)用戶打開(kāi)個(gè)人資料頁(yè)面時(shí),一切都會(huì)改變。因?yàn)槲蚁胱寱?huì)員的個(gè)人資料頁(yè)面像Facebook一樣。喜歡http://www.mywebproject.com/username我創(chuàng)建的 htaccess 在這里:.htaccessRewriteRule ^(.*)$ index.php?page=$1 [L,QSA]RewriteRule (?:^|/)([\w-]+)/?$ profile.php?username=$1 [L,QSA]我的問(wèn)題是這樣的。如何在 switch 中使用成員的用戶名來(lái)調(diào)用成員的個(gè)人資料。
查看完整描述

1 回答

?
德瑪西亞99

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

我如何在 switch 中使用成員的用戶名來(lái)調(diào)用成員的個(gè)人資料,因?yàn)?$thePage 數(shù)組中沒(méi)有每個(gè)用戶名。


只需將所有內(nèi)容傳遞給index.php


.htaccess:


# Activate rewrite engine

RewriteEngine on

RewriteBase /root/


# If the request is not for a valid directory, file or symlink

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-l


# Redirect all requests to index.php

RewriteRule ^(.*)$ index\.php?/$1 [QSA]

您只需將其傳遞$_REQUEST['username']給 profile.php,然后渲染您的頁(yè)面。


就像是:


索引.php


// you can do this better, this is just an example:

$request_uri = $_SERVER['REQUEST_URI'];

$params_offset = strpos($request_uri, '?');

$request_path = '';

$request_params = [];


echo 'request_uri = ', $request_uri, '<br>', PHP_EOL;


if ($params_offset > -1) {

    $request_path = substr($request_uri, 0, $params_offset);

    $params = explode('&', substr($request_uri, $params_offset + 1));

    foreach ($params as $value) {

        $key_value = explode('=', $value);

        $request_params[$key_value[0]] = $key_value[1];

    }

} else {

    $request_path = $request_uri;

}


echo 'request_path = ', $request_path, '<br>', PHP_EOL;

echo 'request_params = ', PHP_EOL; print_r($request_params);


if (preg_match('~/root/(photos|videos|albums)/([\w-]+)~', $request_uri, $match)) {

    print_r($match);

    unset($match);

    require_once('photos_videos_albums.php');

} else if (preg_match('~/root/([\w-]+)~', $request_uri, $match)) {

    $username = $match[1];

    unset($match);

    require_once('profile.php');

} else if ($request_path == '/root/') {

    echo 'HOME';

    exit();

} else {

    header('HTTP/1.0 404 Not Found');

    echo "<h1>404 Not Found</h1>";

    echo "The page that you have requested could not be found.";

}


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

添加回答

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