We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This class remove the URL scheme from everywhere.
\RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class,
This renders the JSON-LD object invalid and stop Google from properly indexing your rich snippets.
<script type="application/ld+json"> { "@context":"http://schema.org", "thumbnailUrl":"http://sampleurl" } </script>
Become this:
<script type="application/ld+json"> { "@context":"//schema.org", "thumbnailUrl":"//sampleurl" } </script>
It should automatically exclude these parts
The text was updated successfully, but these errors were encountered:
Hi!
Trimming URLs is considered medium risk. It can cause problems if it uses the wrong base URL. References ( #61 #60 #53 ).
In your case, do not register: \RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class
Soon we will be updating the documentation of the package, leaving more explicit the risks that each filter can cause.
Sorry, something went wrong.
No branches or pull requests
This class remove the URL scheme from everywhere.
This renders the JSON-LD object invalid and stop Google from properly indexing your rich snippets.
Become this:
It should automatically exclude these parts
The text was updated successfully, but these errors were encountered: