xiaofengwz/v2_wuyuan/master/.htaccess - Htaccess File

xiaofengwz/v2_wuyuan/master/.htaccess

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On
  
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !.(jpg|jpeg|png|bmp|gif|ico|css|js)$
  <IfModule !fcgid_module>
    RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  </IfModule>
  <IfModule fcgid_module>
    RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
  </IfModule>
</IfModule>

On Github License

Files

Download PDF of Htaccess file
PATH_INFO, REQUEST_FILENAME

Comments

Apache