> For the complete documentation index, see [llms.txt](https://developers.weglot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.weglot.com/wordpress/helpers-functions-1/weglot_url_auto_redirect.md).

# weglot\_url\_auto\_redirect

When the browser-language auto-redirect runs, this filter lets you change the destination URL.

```php
add_filter( 'weglot_url_auto_redirect', 'custom_weglot_url_auto_redirect' );
function custom_weglot_url_auto_redirect( $url ) {
    return $url;
}
```
