Click to See Complete Forum and Search --> : htaccess help url rewrite


JohnBampton
08-22-2009, 05:23 AM
I need help with url rewrite. Running Apache linux

I need to direct the following two urls

http://www.donateingham.org/icac
http://donateingham.org/icac

to

https://www.donateingham.org/icac

any ideas, everything i have tried doesn't work

thewebhostingdi
08-23-2009, 01:39 AM
Hi,

Have a check with this code:

RewriteEngine on
rewritecond %{http_host} ^http://www.donateingham.org/icac [nc]

Make sure that Apache Mod-Rewrite module is enabled on the server.

rewritecond %{http_host} ^http://donateingham.org/icac [nc]
rewriterule ^(.*)$ https://www.donateingham.org/icac [r=301,nc]