Guru di So
Ho un semplice file .htaccess in cui reindirizzo solo non www a www per la mia webapp. Ora quello che voglio fare è
- Crea un nuovo vhost come http: //subdomain.mydomain.tld
- Crea un reindirizzamento per chiunque venga a quel sottodominio in una cartella sulla mia app come app / webroot / sottodominio
Il mio attuale .htaccess si presenta così
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mydomain\.tld [NC]
RewriteRule ^(.*)$ http://www.mydomain.tld/$1 [R=301.L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app/webroot/$1 [QSA,L]
</IfModule>
Come lo farei? Posso fare tutto questo nel mio file .htaccess o devo anche pasticciare con GoDaddy? Preferisco non farlo nell'app, se questo ha senso.
Sto eseguendo Ubuntu 10.04 + Apache 2.2.14-5
Grazie