您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> php编程 >> 正文

yii重定向,消除index.php

作者:佚名    责任编辑:admin    更新时间:2022-06-22

在项目下添加.htaccess

内容如下:

<Files .htaccess>

deny from all

</Files>

Options -Indexes

Options +FollowSymLinks

<IfModule mod_rewrite.c>

# 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]

</IfModule>

以上内容中

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

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