您好,登錄后才能下訂單哦!
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網站開啟偽靜態的步驟大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。