
11-09-2011, 05:45 PM
|
|
New Member
|
|
Join Date: Oct 2011
Posts: 4
|
|
Quote:
Originally Posted by webizen
make sure DNS of tvovermind.zap2it.com point to the server served by litespeed. you can test with below if DNS is not ready.
should see a 301 redirect.
|
Yes this is working for root domain only. for some reason links like:
tvovermind.zap2it.com/greys-anatomy/greys-anatomy-sneak-peeks-season-8-episode-9-dark-was-the-night/103776
are not redirecting. the server guy at tribune sent the vhost entry as the fix. Maybe there is an issue with the htaccess...
# 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
Options -Indexes
RewriteEngine On
RewriteRule (.*) http://www.tvovermind.com/$1 [R=301,L]
that is what we have in there.
|