Report bug: urls with ‘//’
-
Hi, i’m Nicolás from Argentina. I’m using your plugin with Google Cloud Server and with an App Engine that don’t likes url with “//” like “example.com/folder/another-folder//css/style.css”. I think Apache tolerates, and understand equal like “/”, but my app engine doesn’t.
I think you can correct the files ponting like this:
wp_enqueue_script( 'example', URL_IN_CONSTANT . '/script/example.js' );
with something like this:
wp_enqueue_script( 'example', URL_IN_CONSTANT . 'script/example.js' );
where I removed this ^
^
^Thanks
Nicolás
The topic ‘Report bug: urls with ‘//’’ is closed to new replies.