zl程序教程

您现在的位置是:首页 >  工具

当前栏目

.htaccess中的apache rewrite规则写法详解(未完)

Apache规则 详解 写法 Rewrite htaccess
2023-09-11 14:19:38 时间

 

 

下面这个是apache -->lavaler的伪静态配置 .htaccess

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

 

 

转:http://www.cnblogs.com/adforce/archive/2012/11/23/2784664.html

http://blog.csdn.net/Long_Xiao_Yun/article/details/51016198