Added PATCH to the allowed Apache request methods.
This commit is contained in:
parent
e2a2441d3b
commit
4488ea4bb9
1 changed files with 1 additions and 17 deletions
18
.htaccess
18
.htaccess
|
@ -15,23 +15,7 @@ RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
RewriteRule ^ index.php [QSA,L]
|
RewriteRule ^ index.php [QSA,L]
|
||||||
|
|
||||||
<Limit GET POST PUT DELETE OPTIONS>
|
<LimitExcept GET POST PUT DELETE PATCH OPTIONS>
|
||||||
<IfModule version_module>
|
|
||||||
<IfVersion >= 2.4>
|
|
||||||
Require all granted
|
|
||||||
</IfVersion>
|
|
||||||
<IfVersion < 2.4>
|
|
||||||
Allow from all
|
|
||||||
Deny from none
|
|
||||||
</IfVersion>
|
|
||||||
</IfModule>
|
|
||||||
|
|
||||||
<IfModule !version_module>
|
|
||||||
Require all granted
|
|
||||||
</IfModule>
|
|
||||||
</Limit>
|
|
||||||
|
|
||||||
<LimitExcept GET POST PUT DELETE OPTIONS>
|
|
||||||
<IfModule version_module>
|
<IfModule version_module>
|
||||||
<IfVersion >= 2.4>
|
<IfVersion >= 2.4>
|
||||||
Require all denied
|
Require all denied
|
||||||
|
|
Loading…
Reference in a new issue