yii 프레임워크 라우팅 구성

王林
풀어 주다: 2020-02-06 18:19:19
원래의
1599명이 탐색했습니다.

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 
로그인 후 복사

다음에 서버 구성 파일 .htaccess#를 추가합니다. 디렉토리 #

RewriteEngine on ############################### # @email test@test.com # @author test ############################### #重写规则 #如果是一个目录或者文件,就访问目录或者文件 RewriteCond %{REQUEST_FILENAME} !-d #如果文件存在,就直接访问文件,不进行下面的RewriteRule RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . index.php
로그인 후 복사

프레임워크 구성 항목에 urlManager 구성 항목을 추가합니다. frontendconfigmain.php

'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, //'suffix' => '.html',//URL后缀],
로그인 후 복사
마지막으로 서버를 다시 시작합니다.

추천 관련 기사 및 튜토리얼:

yii 튜토리얼

위 내용은 yii 프레임워크 라우팅 구성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!