程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> yii重定向,消除index.php

yii重定向,消除index.php

編輯:關於PHP編程

    在項目下添加.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 應根據實際填寫

    試驗了好久才成功得,有一天晚上突然有靈感,雖然靈感失敗了,但是無意中打開了 另一條道路

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved