It works in .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^.*$ http://www.domain.com%{REQUEST_URI} [R=301,L] # <-- Mind the 'L'!
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
My work Did in website <IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^dbuy\.com$ [NC]
RewriteRule ^.*$ http://www.dbuy.com%{REQUEST_URI} [R=301,L] #
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
0 comments:
Post a Comment