📁
File Manager
/home/nepsrganj/public_html
7.4.33 · Linux
/
/
home
/
nepsrganj
/
public_html
/home/nepsrganj/public_html/robots.php
← Back to folder
<?php declare(strict_types=1); /* robots.txt — 도메인 자동 감지 동적 생성 */ header('Content-Type: text/plain; charset=UTF-8'); $host = strtolower(trim((string)($_SERVER['HTTP_HOST'] ?? 'localhost'))); $host = preg_replace('/[^a-z0-9.\-:]/', '', $host) ?: 'localhost'; echo "User-agent: *\n"; echo "Allow: /\n\n"; echo "Sitemap: https://{$host}/sitemap.xml\n";
Cancel
✓ Save