lichunqiang/yii2-swagger-demo/master/web/.htaccess - Htaccess File

lichunqiang/yii2-swagger-demo/master/web/.htaccess

RewriteEngine on
<IfModule mod_headers.c>
  Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
</IfModule>
# 如果请求的是真实存在的文件或目录,直接访问
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 如果请求的不是真实文件或目录,分发请求至 index.php
RewriteRule . index.php

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache