junior013
Forum Replies Created
-
is certainly possible 😉 But probably misplaced it or something, since my copy paste skils are legendary 😛
one question though, everything is working fine regarding the redirect. However since the redirect is active the video slider audio keeps playing when i pause the video. I already opened a topic with the theme designer but they don’t seem to eager to solve it.
Got any idea what it can be? Totally not your responsibility since i think this really is a matter for the theme designer. But if you got any ideas that would be great 😉
Unfortunally it didn’t work. Leads to internal server error. What do you mean by #check fot the rewrite module?
Thanks for the help, everything is working fine now 😉 But one more question. I was in the assumption that when the https redirect was active, this would also solve my “www resolve” problem.
But it seems that i assumed wrong, since www and non www are not refering to the “same” website. I tried adding a code to my htacces but probably it is conflicting with the code that is in there for the https redirect.
this is what my htacces file looks like now:
# 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 # BEGIN rlrssslReallySimpleSSL rsssl_version[2.1.17] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule> # END rlrssslReallySimpleSSLThis is the code I wanted to add, but as you can probably guess it didnt work like that 😛
//Rewrite to www Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^mysite.nl[nc] RewriteRule ^(.*)$ http://www.mysite.nl/$1 [r=301,nc]is there a way to somehow implement this code? I you have any suggestions i’d be happy to hear them.
Junior
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] SSL and wp fastest cacheIt seems like it does not only affect the wpfc settings tab but the complete website. Is there anything i can try so that wpfc will keep my https connection whole.
Thanks in advance.
Yup bit confusing 😛 I’ve send you an email.
I Tried it like this
# 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 RewriteEngine On RewriteCond %{HTTPS} !=on [NC] RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]so without the opening
<IfModule mod_rewrite.c>and closing</IfModule>tags. I’m not sure if these are necessary or not, since my php knowledge is absolutely 0. But this also didn’t work 🙁oke, i tried it like this.
# 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 RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>I’ve added the rules outside the wordpress comments. like you said. Well at least thats what I think you ment. I’m posting the complete codes because i have no idea what the htacces file should look like and what should go where 😛
I replaced
RewriteCond %{HTTPS} !=on [NC]for
RewriteCond %{HTTPS} !=1and after that this one
RewriteCond %{SERVER_PORT} !443Unfortunally both didnt work. So now i’m down at the last option. But I was not quite sure were exactly I have to place the wp-config code you mentioned above. Completely at the top? Or just below the @wordpress package?
Hi,
When i add the code from above it is still showing the redirect loop. I placed it in my htacces like this:
# 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> <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule> # END WordPressAm i doing it wrong or is there perhaps something else that is conflicting?