# Proxify Url

If you want to proxify the following url : [https://my.ressource.io/](https://snapui.searchspring.io/)\
you have to transform the url like this :&#x20;

**proxy.weglot.com/API\_KEY/LANGUAGE\_FROM/LANGAUAGE\_TO/my.ressource.io**\
\
to do that you can use this filter

```php
// Add this using plugin "Code Snippet" or directly in functions.php
function proxify_callback( $url_to_proxify ) {
    $url_to_proxify = [];
    $url_to_proxify[] = 'https://my.ressource.io/';
    return $url_to_proxify;
}
add_filter( 'weglot_proxify_urls', 'proxify_callback' );
```

NB : you can pass many url into the array
