熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

yii重定向,消除index.php

2022-06-13   來源: PHP編程 

  在項目下添加htaccess

  內容如下

  <Files htaccess>

  deny from all

  </Files>

  Options Indexes

  Options +FollowSymLinks

  <IfModule mod_rewritec>

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

  RewriteRule ^(*)$ /hangman/indexphp [L]

  </IfModule>

  以上內容中

  RewriteRule 後面的 /hangman/indexphp 應根據實際填寫

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


From:http://tw.wingwit.com/Article/program/PHP/201311/20967.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.