I have a domain name www.jannatband.com, when I access the url:
It successfully echoes the value asd, the original url is like:
http://jannatband.com/me/index.php?u=asd
HTACESS CODE FOR THE ABOVE:
# .htaccess
RewriteEngine on
RewriteRule ^[aA-zZ]+$ index.php?u=$0
but when I try to convert the same url to
http://me.jannatband.com/asd
using this .htaccess code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^me\.jannatband\.com$
RewriteCond %{REQUEST_URI} !^/me/
RewriteRule (.*) /me/$1
Its giving me a This webpage is not available error. What is wrong with this .htaccess code?
PS: the /me/ is an existing directory in the public_html.
http://me.jannatband.com/asd– hakre Jun 18 '11 at 15:45