Skip to content

Instantly share code, notes, and snippets.

@bernierocks
Created October 19, 2013 04:07
Show Gist options
  • Save bernierocks/7051558 to your computer and use it in GitHub Desktop.
Save bernierocks/7051558 to your computer and use it in GitHub Desktop.
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.housebuyersusa\.com
RewriteRule (.*) http://www.housebuyersusa.com/$1 [R=301,L]
#ErrorDocument 404 http://www.housebuyersusa.com/error/error
AddType text/css .css
RewriteRule !\.(css|rtf|RTF|pdf|PDF|log|xml|js|ico|gif|htc|jpg|png|htm|swf|flv|mp3|zip|rar|doc)$ index.php
--------------------------------------------------------------------------------------
rewriteengine on
#ErrorDocument 404 http://www.housebuyersusa.com/error/error
AddType text/css .css
rewritecond %{HTTP_HOST} !^www\.housebuyersusa\.com
rewriterule (.*) http://www.housebuyersusa.com/$1 [R=301,L]
rewriterule !\.(css|rtf|RTF|pdf|PDF|log|xml|js|ico|gif|htc|jpg|png|htm|swf|flv|mp3|zip|rar|doc)$ index.php
Redirect /listings/index/propertyid/ http://www.housebuyersusa.com/listings/
Redirect /listings/index/ http://www.housebuyersusa.com/listings/
-----------------------------------------------------------------------------------------
rewriteengine on
#ErrorDocument 404 http://www.housebuyersusa.com/error/error
AddType text/css .css
rewritecond %{HTTP_HOST} !^www\.housebuyersusa\.com
rewriterule (.*) http://www.housebuyersusa.com/$1 [R=301,L]
rewriterule !\.(css|rtf|RTF|pdf|PDF|log|xml|js|ico|gif|htc|jpg|png|htm|swf|flv|mp3|zip|rar|doc)$ index.php
Redirect http://www.housebuyersusa.com/listings/index/ http://www.housebuyersusa.com/listings/index/propertyid/
Redirect http://www.housebuyersusa.com/listings/ http://www.housebuyersusa.com/listings/index/propertyid/
Redirect http://www.housebuyersusa.com/listings/index http://www.housebuyersusa.com/listings/index/propertyid/
Redirect http://www.housebuyersusa.com/listings http://www.housebuyersusa.com/listings/index/propertyid/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment