Status
Not open for further replies.

Divvy

Active Member
806
2009
18
0
Hello,

I'm using this code at .htaccess file:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

With this code, when someone access my website through domain.com they will will redirect automatically to www.domain.com

But now I need to disable this in a specific folder only...
Can someone help me doing that? :-)

Thanks!

---------- Post added at 06:30 PM ---------- Previous post was at 05:55 PM ----------

Solved!

Solution:
create .htaccess file in crtr directory with
RewriteEngine Off
inside
 
1 comment
Status
Not open for further replies.
Back
Top