garethhall Posted May 18, 2012 Share Posted May 18, 2012 I have been tying to get the site redirection to work but I keep on getting an internal server error Here is what I need if the url is not http://www2.mydomain.com/content/newzealand/mpc/mpc_newzealand_website/en/home_mpc/van** or http://www2.mydomain.com/content/newzealand/mpc/mpc_newzealand_website/en/home_mpc/truck*** then redirect http://www.mydomain.com This is what I have at present but like I said it does not work. Options +FollowSymLinks RewriteEngine On RewriteCond !http://www2.mydomain.com/content/newzealand/mpc/mpc_newzealand_website/en/home_mpc/van.* RewriteCond !http://www2.mydomain.com/content/newzealand/mpc/mpc_newzealand_website/en/home_mpc/truck.* RewriteRule .* http://www.mydomain.com [R=301,L] Quote Link to comment https://forums.phpfreaks.com/topic/262721-htacces-redirection-with-wildcards/ Share on other sites More sharing options...
smoseley Posted May 18, 2012 Share Posted May 18, 2012 RewriteCond %{HTTP_HOST} ^www2.mydomain.com$ RewriteCond %{REQUEST_URI} !^/content/newzealand/mpc/mpc_newzealand_website/en/home_mpc/(van|truck).* RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L] Quote Link to comment https://forums.phpfreaks.com/topic/262721-htacces-redirection-with-wildcards/#findComment-1346524 Share on other sites More sharing options...
garethhall Posted May 18, 2012 Author Share Posted May 18, 2012 Thanks for the reply but no luck I still get an Internal Server Error There is something wrong the the RewriteCond as commenting that out makes the error disappear. Quote Link to comment https://forums.phpfreaks.com/topic/262721-htacces-redirection-with-wildcards/#findComment-1346526 Share on other sites More sharing options...
smoseley Posted May 18, 2012 Share Posted May 18, 2012 Which one? 2nd, i assume? Quote Link to comment https://forums.phpfreaks.com/topic/262721-htacces-redirection-with-wildcards/#findComment-1346581 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.