José
Forum Replies Created
-
Forum: Plugins
In reply to: [Access Watch: Security and Traffic Insights] ERROR LOGThank You
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Add Custom CSS When I Scroll DownTry this:
/*Sticky OFF*/ #site-navigation.sticky-element-original.sticky-element-active{ background-color: rgba(255, 255, 255, 0.2); } /*Sticky ON*/ #site-navigation.sticky-element-original{ background-color: rgba(255, 255, 255, 0.8); }
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Add Custom CSS When I Scroll DownPlease put your website url here.
Maybe we can help.I have found this:
https://www.ads-software.com/support/topic/woocommerce-translation-updates-itself/- This reply was modified 7 years, 9 months ago by José.
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Add Custom CSS When I Scroll DownYes, Sticky.
I have fixed I put my CSS in this class.
.sticky-element-original { }
Thank You
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Add Custom CSS When I Scroll DownHi Mark,
I’m trying to resize top and bottom margin in my nav menu!
Thank You
Forum: Plugins
In reply to: [Contact Form 7] WP Super Cache – DONOTCACHEPAGETo solve this problem, make sure you have the appropriate garbage collection (clean-up) settings in the cache plugin. The cache should be emptied frequently (less than 24 hours). The configuration varies in different cache plugins. Consult your cache plugin’s support for details.
How can I do this in the WP Super Cache Settings?
Thank You
Thank You
I put this in the rootfolder and it’s fixed…
It’s okay, doing this?
RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]
Thank You Rogier for your time and support ^_~′
Holla Rogier,
Sorry, but doesn’t work, now i have this:
Typing https://domain.com > Redirects to https://domain.com/index.php
rootfolder:
RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] RewriteCond %{REQUEST_URI} !domain.com/ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule (.*) /domain.com/$1 [L]
domainfolder:
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.3] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP:X-Forwarded-Proto} !https 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
No, ^_^’ if i remove this L in
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
I have this redirection to https://domain.com/domain.com/https://domain.com/
Now i have this:
RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301] RewriteCond %{REQUEST_URI} !domain.com/ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule (.*) /domain.com/$1 [L]
Thank You
Yes, it’s working ^_~’ for https://www.domain.com > https://www.domain.com
But not for when someone is typing https://domain.com > https://domain.comI have this:
RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] RewriteCond %{REQUEST_URI} !domain.com/ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule (.*) /domain.com/$1 [L]
Thank You
- This reply was modified 7 years, 10 months ago by José.
Put this .htaccess in root folder or domain folder?
root folder: public_html/
domain folder: public_html/domain.com<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>
Thank You
I only have this in .htaccess but i have the same redirection.
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.3] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP:X-Forwarded-Proto} !https 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
I try, but i have the same redirection:
I have this in my .htaccess public_html home of all domains
RewriteEngine on RewriteCond %{REQUEST_URI} !domain.com/ RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule (.*) /domain.com/$1 [L] RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteCond %{REQUEST_URI} !domain.com/ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule (.*) /domain.com/$1 [L]
You can see something here?
Thank You