审查视图

public/.htaccess 229 字节
Karson authored
1 2 3 4 5 6
<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
7
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
Karson authored
8
</IfModule>