edsouza
Forum Replies Created
-
Perfect, Rogier. Now all URLs are redirecting to https://www.mysite.com, and there is no double redirection.
Thank you very much for the help and congratulations for the plugin.
Yes, I’ve cleared the cache.
Taking the test at https://www.redirect-checker.org/, I get the result:
Result:
CONGRATULATION. Everything seems to be fine.
=============
https://mysite.com
301 Moved Permanently
https://mysite.com/
301 Moved Permanently
https://www.mysite.com/
200 OK
=============He is redirecting twice.
Ideally, would not it only redirect once? As below:
==================
https://mysite.com
301 Moved Permanently
https://www.mysite.com/
200 OK
==================After installation, the number of pages in my site indexed by Google doubled.
What else can I try?
Hello, Rogier.
I tried everything on the indicated page, but nothing worked. I also uninstalled all plugins, but it did not work.
My website: https://goo.gl/P471vN
My .htaccess:
<FilesMatch “(?i)^.*\.(ico|flv|jpg|jpeg|png|gif|js|css|woff)$”>
ExpiresActive On
ExpiresDefault A2592000
</FilesMatch>
<IfModule mod_headers.c>
<FilesMatch “.(js|css|xml|gz|html)$”>
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
FileEtag None
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault “access plus 1 month”
ExpiresByType image/gif “access plus 1 month”
ExpiresByType image/png “access plus 1 month”
ExpiresByType image/jpg “access plus 1 month”
ExpiresByType image/jpeg “access plus 1 month”
ExpiresByType text/html “access plus 3 days”
ExpiresByType text/xml “access plus 1 seconds”
ExpiresByType text/plain “access plus 1 seconds”
ExpiresByType application/xml “access plus 1 seconds”
ExpiresByType application/rss+xml “access plus 1 seconds”
ExpiresByType application/json “access plus 1 seconds”
ExpiresByType text/css “access plus 1 week”
ExpiresByType text/javascript “access plus 1 week”
ExpiresByType application/javascript “access plus 1 week”
ExpiresByType application/x-javascript “access plus 1 week”
ExpiresByType image/x-ico “access plus 1 year”
ExpiresByType image/x-icon “access plus 1 year”
ExpiresByType application/pdf “access plus 1 month”
<IfModule mod_headers.c>
Header set Connection keep-alive
Header unset Pragma
Header unset Last-Modified
Header append Cache-Control “public, no-transform, must-revalidate”
</IfModule>
</IfModule>
# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/bmp application/java application/msword application/vnd.ms-fontobject application/x-msdownload image/x-icon image/webp application/json application/vnd.ms-access application/vnd.ms-project application/x-font-otf application/vnd.ms-opentype application/vnd.oasis.opendocument.database application/vnd.oasis.opendocument.chart application/vnd.oasis.opendocument.formula application/vnd.oasis.opendocument.graphics application/vnd.oasis.opendocument.presentation application/vnd.oasis.opendocument.spreadsheet application/vnd.oasis.opendocument.text audio/ogg application/pdf application/vnd.ms-powerpoint image/svg+xml application/x-shockwave-flash image/tiff application/x-font-ttf application/vnd.ms-opentype audio/wav application/vnd.ms-write application/font-woff application/font-woff2 application/vnd.ms-excel
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
<FilesMatch “\.(html|htm|rtf|rtx|svg|txt|xsd|xsl|xml|HTML|HTM|RTF|RTX|SVG|TXT|XSD|XSL|XML)$”>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
</FilesMatch>
<FilesMatch “\.(bmp|class|doc|docx|eot|exe|ico|webp|json|mdb|mpp|otf|_otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|pot|pps|ppt|pptx|svg|svgz|swf|tif|tiff|ttf|ttc|_ttf|wav|wri|woff|woff2|xla|xls|xlsx|xlt|xlw|BMP|CLASS|DOC|DOCX|EOT|EXE|ICO|WEBP|JSON|MDB|MPP|OTF|_OTF|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|POT|PPS|PPT|PPTX|SVG|SVGZ|SWF|TIF|TIFF|TTF|TTC|_TTF|WAV|WRI|WOFF|WOFF2|XLA|XLS|XLSX|XLT|XLW)$”>
<IfModule mod_headers.c>
Header unset Last-Modified
</IfModule>
</FilesMatch>
# END W3TC Browser Cache
# BEGIN W3TC Page Cache core
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=W3TC_ENC:_gzip]
RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]
RewriteRule .* – [E=W3TC_PREVIEW:_preview]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =””
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC]
RewriteCond “%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” -f
RewriteRule .* “/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” [L]
</IfModule>
# END W3TC Page Cache core
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.5.0]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolI’ll research how to do it.
Thank you very much, Milan.
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolIf not ask too much, can you tell me how to use these filters? I’ve never worked with them and I do not know how.
??- This reply was modified 8 years, 2 months ago by edsouza.
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolVersion 2.0.1 is working. Excellent work Milan Petrovic.
Just a note: On the category page being evaluated, the URL being displayed in the “itemprop =” url “parameter is the first post in the listing, not the category URL.
Congratulations on the great work with this plugin.
Thank you.
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolStill does not work.
Disable “Snippet on singular pages only” and it still does not work.
I also tested the pages of posts and pages, and also does not work, no information is added in HTML.
I changed the theme to Twenty Sixteen, but the problem persists. On the page it counts, but does not add the markup in HTML.
What else can we try?
- This reply was modified 8 years, 2 months ago by edsouza.
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolIn none is appearing, I just tested this: goo.gl/mKFDVa
I am using the shortcode:
[gdrts_stars_rating_auto template="default" style_size=30 style_type="font" style_font_name="star"]
I also created a rule to display the voting only on category pages.
I deactivated the cache plugin, and even then the tags do not appear in HTML.
- This reply was modified 8 years, 2 months ago by edsouza.
Forum: Plugins
In reply to: [GD Rating System] Nothing appears in the Structured Data Testing ToolThis is my site: goo.gl/R6GKzM
Forum: Plugins
In reply to: [GD Rating System] Infinite loadingCorrecting:
<?php $category = get_the_category(); ?> <?php gdrts_render_rating(array('echo' => true, 'entity' => 'terms', 'name' => 'category', 'id' => $category[0]->cat_ID));?>
Forum: Plugins
In reply to: [W3 Total Cache] Gzip compression does not work.UP!
Forum: Plugins
In reply to: [Plugin:All In One Schema.org Rich Snippets] Show summary in the sidebar