mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
19 lines
408 B
Markdown
19 lines
408 B
Markdown
---
|
|
id: c6744b2e-f845-4ac7-83d5-ef206743e4a6
|
|
title: Automatic Search Engine Protection
|
|
---
|
|
|
|
# Description
|
|
|
|
Symfony dissalows search engine indexing for development applications. A
|
|
`X-Robots-Tag: noindex` HTTP header is added to all responses. This can
|
|
be manually overridden in the config.
|
|
|
|
# Syntax
|
|
|
|
``` yaml
|
|
# config/packages/framework.yaml
|
|
framework:
|
|
# ...
|
|
disallow_search_engine_index: false
|
|
```
|