xhr = new XMLHttpRequest();
xhr.open('POST', 'https://nadim.work/test.php', true);
xhr.setRequestHeader('Content-Type', 'aplication/json');
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
console.log('Ответ сервера:', xhr.responseText);
}
}
}
xhr.send('{}');
await (await fetch('https://nadim.work/form_data_test.php')).formData(); // TypeError: Could not parse content as FormData.
HTTP/2 200 OK
server: nginx-reuseport/1.21.1
date: Wed, 12 Jul 2023 06:18:06 GMT
content-type: multipart/form-data; boundary=---------------------------174400413723109252861051417751
content-length: 412
x-powered-by: PHP/7.4.33
x-content-type-options: nosniff
cache-control: no-store, no-cache, must-revalidate
X-Firefox-Spdy: h2
-----------------------------174400413723109252861051417751
Content-Disposition: form-data; name="raz"
Первый
-----------------------------174400413723109252861051417751
Content-Disposition: form-data; name="dva"
Второй
-----------------------------174400413723109252861051417751
Content-Disposition: form-data; name="tri"
Третий
-----------------------------174400413723109252861051417751--
Файл .htaccess, расположенный в корневой папке сайта, имеет самый низкий приоритет. Его настройки перезаписываются файлами .htaccess из вложенных папок.
Например, если в корневой папке есть файл .htaccess с запретом индексации папок, а во вложенной папке articles есть файл .htaccess с разрешением индексации, то для папки articles будет действовать разрешение индексации.