PHP網(wǎng)站開啟偽靜態(tài)的步驟?這個問題可能是我們日常學習或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純热?,讓我們一起來看看吧?/p>
我們提供的服務有:網(wǎng)站建設、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、防城港ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的防城港網(wǎng)站制作公司
PHP網(wǎng)站開啟偽靜態(tài)的步驟
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服務器
在要啟用偽靜態(tài)的 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 是路由轉向規(guī)則,之前路徑為瀏覽器中要輸入路徑,這里可以用正則表達式表達。之前路徑為瀏覽器中要輸入路徑,這里可以用正則表達式表達。+空格 后路徑為后臺實際轉向路徑, 轉向后臺實際路徑時可以傳參數(shù)。
例子里的后臺頁面可以用GET[′p′]GET[′p′]_GET[‘action’] GET[‘id′]來接收GET[‘id′]來接收1 代表瀏覽器路徑中輸入的第一個正則表達式的值,以此類推,$2代表第二個正則表達式的值 RewriteRule 路由轉向規(guī)則里正則表達式用括號 () 括起來。
在項目下 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網(wǎng)站開啟偽靜態(tài)的步驟大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
當前標題:PHP網(wǎng)站開啟偽靜態(tài)的步驟
瀏覽地址:http://jinyejixie.com/article30/gdpepo.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、網(wǎng)站改版、網(wǎng)站建設、定制開發(fā)、網(wǎng)站內鏈、外貿網(wǎng)站建設
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)