# asp\_redirect\_url

The URL where the search redirects to, when the user hits the return key, "magnifier", "search" or "more results" buttons.

```javascript
WPD.Hooks.applyFilters('asp_redirect_url', url, searchId, searchInstanceId);
```

#### Example

```javascript
window.addEventListener("load", () => {
	WPD.Hooks.addFilter('asp_redirect_url', function(url){
		return url.replace(
			"string", 
			"string_to_replace_with"
		);
	}, 10);
});
```
