>  기사  >  백엔드 개발  >  yii重定向,消除index.php_PHP教程

yii重定向,消除index.php_PHP教程

WBOY
WBOY원래의
2016-07-20 11:17:561049검색

在项目下添加.htaccess

内容如下:

deny from all

Options -Indexes

Options +FollowSymLinks

# For security reasons, Option followsymlinks cannot be overridden.

# Options +FollowSymLinks

# Options +SymLinksIfOwnerMatch

# IndexIgnore */*

RewriteEngine on

# if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php

RewriteRule ^(.*)$ /hangman/index.php [L]

以上内容中

RewriteRule 后面的 /hangman/index.php 应根据实际填写

试验了好久才成功得,有一天晚上突然有灵感,虽然灵感失败了,但是无意中打开了 另一条道路

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371908.htmlTechArticle在项目下添加.htaccess 内容如下: Files .htaccess deny from all /Files Options -Indexes Options +FollowSymLinks IfModule mod_rewrite.c # For security reasons, Option foll...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.