溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

apache開啟偽靜態(tài)的方法

發(fā)布時(shí)間:2020-05-18 11:19:21 來源:億速云 閱讀:403 作者:小新 欄目:建站服務(wù)器

這篇文章主要為大家詳細(xì)介紹了apache開啟偽靜態(tài)的方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下。

apache開啟偽靜態(tài)的步驟:

打開apache的配置文件httpd.conf,路徑:wamp\bin\apache\apache2.4.9\conf\httpd.conf

找到

 #LoadModule rewrite_module modules/mod_rewrite.so

把前面#去掉。沒有則添加,但必選獨(dú)占一行,使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>

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

重啟apache服務(wù)器

在要啟用偽靜態(tài)的 PHP 項(xiàng)目根目錄下建立 .htaccess 文件

以上就是apache開啟偽靜態(tài)的方法的簡(jiǎn)略介紹,當(dāng)然詳細(xì)使用上面的不同還得要大家自己使用過才領(lǐng)會(huì)。如果想了解更多,歡迎關(guān)注億速云行業(yè)資訊頻道哦!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI