# Auto switch only for HomePage

By default, auto switch will be on all pages. For example with a **french** browser:

`/` will be redirected to `/fr/`\
`/contact` will be redirected to `/fr/contact`

To restrict it only for home page:

```php
// Add this using plugin "Code Snippet" or directly in functions.php
add_filter( 'weglot_autoredirect_only_home', '__return_true' );
```
