yii隐藏索引.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii隐藏索引.php相关的知识,希望对你有一定的参考价值。

Hiding index.php from url
  1. File: .htaccess
  2.  
  3. LoadModule rewrite_module modules/mod_rewrite.so
  4.  
  5.  
  6.  
  7. RewriteEngine On
  8. RewriteBase /
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11. RewriteRule ^(.*)?*$ index.php/$1 [L,QSA]
  12.  
  13.  
  14.  
  15. RewriteEngine on
  16.  
  17. # if a directory or a file exists, use it directly
  18. RewriteCond %{REQUEST_FILENAME} !-f
  19. RewriteCond %{REQUEST_FILENAME} !-d
  20.  
  21. # otherwise forward it to index.php
  22. RewriteRule . index.php
  23.  
  24.  
  25.  
  26.  
  27.  
  28. File : conifg/main.php
  29.  
  30. 'urlManager'=>array(
  31. 'urlFormat'=>'path',
  32. 'showScriptName'=>false,
  33. 'caseSensitive'=>false,
  34. ),

以上是关于yii隐藏索引.php的主要内容,如果未能解决你的问题,请参考以下文章

yii中的基本隐藏字段

Yii2 url地址美化与重写

跨站请求伪造 Yii,PHP

如果我使用 select2 小部件,如何发布表中记录的实际主键而不是 php Yii2 中的数组索引?

隐藏 Yii2 GridView 操作按钮

Yii2基本模式不调用main.php