Hi. Small problem I can't get to the bottom off...
Yesterday I had to move some of my sites to a new server. Had the accounts saved in cpanel, restored them on the new installation through whm, all seemed fine. Except that in all zencart sites I have, htose that had ssu active now redirect all links to the homepage. I checked mod_rewrite, it's active, the nameservers, even the ip's are the same, I don't understand what's going on. Oh, and I seem to have php running on cgi if that makes a difference, as all my sites stated that configure.php is writable, but the file's rights were 644. I made a chmod.php to fix the issue, but the ssu problem remains. Any help please? Here's an example of what I'm talking about. This is a work in progress, a temporary domain for this would be shop. I control this server, so if there are technologies I missed on my apache compilation, please tell me. Thank you.
L.E.
Here's the content of my .httaccess
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^info-juego.es
RewriteRule (.*) http://www.info-juego.es/$1 [R=301,L]
#### EOF SSURewriteCond %{HTTP_HOST} ^info-juego.es$ [OR]
RewriteCond %{HTTP_HOST} ^info-juego.es$ [OR]
RewriteCond %{HTTP_HOST} ^www.info-juego.es$
RewriteRule ^/?$ "http\:\/\/www\.info-juego\.es" [R=301,L]
Bookmarks