Hi,
I currently have https for the whole site and now would like to use https only for a particular directory (required by a facebook app) and not for whole site (annoying warning messages every time in IE)..
I updated the http url;s in the vb options and have the following in root .htaccess
and i have put the following .htaccess in the specific facebook app directory# Use PHP5 Single php.ini as defaultAddHandler application/x-httpd-php5s .php
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com
RewriteRule (.*) http://www.mydomain.com/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Now after changing all these when i type my url like http://www.mydomain.com it is still redirecting to "https://www.usindiatalk.com"RewriteEngine On
RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://domain.com/$1 [R,L]
Is there anything else i should do ?
Thanks in advance,


LinkBack URL
About LinkBacks





Reply With Quote