日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php yii框架路由,yii框架路由配置

發布時間:2023/12/1 php 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php yii框架路由,yii框架路由配置 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

首先要在服務器配置(httpd.conf)中開啟重寫模塊#開啟重寫模塊,將其前面的#去掉

LoadModule rewrite_module modules/mod_rewrite.so

#Directory中允許覆蓋開啟

#

# 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.4/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 All

#

# Controls who can get stuff from this server.

#

Require all granted

在目錄下加入服務器配置文件.htaccessRewriteEngine on

###############################

# @email test@test.com

# @author test

###############################

#重寫規則

#如果是一個目錄或者文件,就訪問目錄或者文件

RewriteCond %{REQUEST_FILENAME} !-d

#如果文件存在,就直接訪問文件,不進行下面的RewriteRule

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule . index.php

在框架配置項\frontend\config\main.php中加入urlManager配置項'urlManager' => [

'enablePrettyUrl' => true,

'showScriptName' => false,

//'suffix' => '.html',//URL后綴],

最后,重啟服務器。

相關文章教程推薦:yii教程

總結

以上是生活随笔為你收集整理的php yii框架路由,yii框架路由配置的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。