LiteSpeed Technologies
Download Download     Blog Blog     Wiki Wiki     Forum Forum     Store     Contact Contact    

Go Back   LiteSpeed Support Forums > LiteSpeed Web Server > General > Rewrite rule not work !

Reply
 
Thread Tools Display Modes
  #1  
Old 12-12-2012, 11:38 AM
pardis pardis is offline
Senior Member
 
Join Date: Jun 2011
Posts: 83
Default Rewrite rule not work !

Hello :

It is appear Rewrite_mode rule not worked on sever , this is important rule for almost user.

Example :

RewriteCond %{HTTP_HOST} ^dl\.lianportal\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.dl\.lianportal\.com$
RewriteRule ^/?$ "http\:\/\/lianportal\.com" [R=301,L

Thanks
Reply With Quote
  #2  
Old 12-12-2012, 04:55 PM
NiteWave NiteWave is online now
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,218
try:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^dl\.lianportal\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.dl\.lianportal\.com$
RewriteRule ^(.*)$ http://lianportal.com/$1 [R=301,L]
Reply With Quote
  #3  
Old 12-12-2012, 07:55 PM
webizen webizen is offline
LiteSpeed Staff
 
Join Date: Oct 2010
Posts: 2,337
Quote:
Originally Posted by pardis View Post
Hello :

It is appear Rewrite_mode rule not worked on sever , this is important rule for almost user.

Example :

RewriteCond %{HTTP_HOST} ^dl\.lianportal\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.dl\.lianportal\.com$
RewriteRule ^/?$ "http\:\/\/lianportal\.com" [R=301,L

Thanks
It should work in httpd.conf (not .htaccess) as follows:

RewriteCond %{HTTP_HOST} ^dl\.lianportal\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.dl\.lianportal\.com$
RewriteRule ^/?$ "http\:\/\/lianportal\.com" [R=301,L]

Note that it is for URL contains with "/" or "" ONLY, not for everything else. If you need rewrite for everything else, you should use

RewriteRule ^/(.*)$ "http\:\/\/lianportal\.com/$1" [R=301,L]

/ (slash after ^) is needed if rules are in httpd.conf. No need in .htaccess.

You can put 'RewriteLogLevel 9' in the httpd.conf to enable rewrite logging and grep REWRITE entry in error_log for debugging.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 06:03 PM.



- Archive - Top
© Copyright 2003-2011 LiteSpeed Technologies, Inc. All rights reserved. Privacy Policy.