I am doing a simple jQuery post:
$.post( "script.php", { urls: listOfURLs} );
The post
works fine if it contains no URLs, however, if there are URLs included, then I get:
POST script.php 403 (Forbidden)
Is there some way I can sanitize this list of URLs or something to prevent it from 403ing?
Everything involved is on the same domain.