亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP網站開啟偽靜態的步驟

發布時間:2020-10-20 15:15:31 來源:億速云 閱讀:108 作者:小新 欄目:編程語言

PHP網站開啟偽靜態的步驟?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

PHP網站開啟偽靜態的步驟

1、打開apache的配置文件httpd.conf找到

#LoadModule rewrite_module modules/mod_rewrite.so

把前面#去掉。沒有則添加,但必選獨占一行,使apache支持 mod_rewrite 模塊,找到

<Directory "D:/ApacheServer/web">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>

3、把AllowOverride None換成AllowOverride All使apache支持.htaccess文件

4、重啟apache服務器

在要啟用偽靜態的 PHP 項目根目錄下建立 .htaccess 文件,在 .htaccess 文件中輸入內容

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule index.html$ index.php
   RewriteRule index-([1-9]+[0-9]*).html$ index.php?p=$1
   RewriteRule ([a-z]{1,})-([0-9]{1,}).html$ index.php?action=$1&id=$2</IfModule>

注釋:

RewriteEngine 為重寫引擎開關,on為開啟,off為關閉。

RewriteRule 是路由轉向規則,之前路徑為瀏覽器中要輸入路徑,這里可以用正則表達式表達。之前路徑為瀏覽器中要輸入路徑,這里可以用正則表達式表達。+空格 后路徑為后臺實際轉向路徑, 轉向后臺實際路徑時可以傳參數。

例子里的后臺頁面可以用GET[′p′]GET[′p′]_GET[‘action’] GET[‘id′]來接收GET[‘id′]來接收1 代表瀏覽器路徑中輸入的第一個正則表達式的值,以此類推,$2代表第二個正則表達式的值 RewriteRule 路由轉向規則里正則表達式用括號 () 括起來。

在項目下 index.php 頁面內寫入內容

<?php
if ($_GET ['p']) {
    echo "p : " . $_GET ['p'];
}

if ($_GET ['action']) {
    echo "action : " . $_GET ['action'];
}

if ($_GET ['id']) {
    echo "id : " . $_GET ['id'];
}
?>

感謝各位的閱讀!看完上述內容,你們對PHP網站開啟偽靜態的步驟大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

米脂县| 南丹县| 临颍县| 蕲春县| 巢湖市| 长宁县| 铁岭县| 澎湖县| 新蔡县| 信宜市| 靖西县| 隆安县| 文水县| 岗巴县| 乌兰浩特市| 阳朔县| 柘荣县| 静宁县| 黑龙江省| 那曲县| 罗源县| 得荣县| 镇坪县| 高平市| 清丰县| 龙游县| 南城县| 沙洋县| 义马市| 古田县| 七台河市| 郴州市| 忻城县| 永新县| 长海县| 馆陶县| 宣恩县| 含山县| 和田县| 丽江市| 蒙城县|