jeret Posted March 24, 2011 Report Share Posted March 24, 2011 Hi i have successfully, configured and made my web online. i have setup the virtual host:Now i want to redirect all my non www webaddress to www. How do i do this? i have even edited the .htaccess in my uniserver/www/ with few different config but it's still not working. please help: RewriteEngine OnRewriteCond % ^lourdes.com.my [NC]RewriteRule ^(.*)$ http://www.lourdes.com.my/$1 [L,R=301]------------------------------------------------------------------------------------------------------------------RewriteEngine OnRewriteCond %{HTTP_HOST} !^www\.RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]------------------------------------------------------------------------------------------------------------------##########VIRTUAL HOST SETUP########### WWW.AMPANGPOINT.COM.MY<VirtualHost *>ServerName www.ampangpoint.com.myDocumentRoot C:/UniServer/www/asb</VirtualHost> ##########VIRTUAL HOST SETUP########### WWW.AMPANGSUPERBOWL.COM<VirtualHost *>ServerName www.ampangsuperbowl.comDocumentRoot C:/UniServer/www/asb</VirtualHost> ##########VIRTUAL HOST SETUP########### WWW.REDALERTCARD.COM.MY<VirtualHost *>ServerName www.redalertcard.com.myDocumentRoot C:/UniServer/www/redalert</VirtualHost> Quote Jeret Christopher WEB DESIGNER Link to comment Share on other sites More sharing options...
Coral Posted March 24, 2011 Report Share Posted March 24, 2011 Have you tried using ServerAlias for example: ##########VIRTUAL HOST SETUP########### WWW.AMPANGSUPERBOWL.COM<VirtualHost *>ServerName www.ampangsuperbowl.comServerAlias ampangsuperbowl.com *.ampangsuperbowl.com DocumentRoot C:/UniServer/www/asb</VirtualHost> Quote Link to comment Share on other sites More sharing options...
jeret Posted March 25, 2011 Author Report Share Posted March 25, 2011 Have you tried using ServerAlias for example: ##########VIRTUAL HOST SETUP########### WWW.AMPANGSUPERBOWL.COM<VirtualHost *>ServerName www.ampangsuperbowl.comServerAlias ampangsuperbowl.com *.ampangsuperbowl.com DocumentRoot C:/UniServer/www/asb</VirtualHost> hi Coral, it's not working either, i tried this way instead and it's working : <VirtualHost *> DocumentRoot C:/uniserver/www/asb ServerName www.ampangsuperbowl.com</VirtualHost> <VirtualHost *> DocumentRoot C:/uniserver/www/asb ServerAlias ampangsuperbowl.com Redirect permanent / http://www.ampangsuperbowl.com</VirtualHost> but above don't seem to with extensions like "com.my" ex: www.lourdes.com.my Quote Jeret Christopher WEB DESIGNER Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.