.htaccess
Aus Mein Wiki
Sebra (Diskussion | Beiträge) (→Cheat Sheets) |
Sebra (Diskussion | Beiträge) (→Samples) |
||
Zeile 36: | Zeile 36: | ||
#differently. If you want you can add an extra parameter too, like: | #differently. If you want you can add an extra parameter too, like: | ||
RewriteRule /path/index.php /path/iphone.php?extra=param [QSA,L] | RewriteRule /path/index.php /path/iphone.php?extra=param [QSA,L] | ||
+ | |||
+ | === subdomain to folder/directory === | ||
+ | Is it possible to use .htaccess to rewrite a sub domain to a directory? | ||
+ | Example: http://sub.domain.com/ shows the content of http://domain.com/subdomains/sub/ | ||
+ | |||
+ | RewriteEngine on | ||
+ | RewriteCond %{HTTP_HOST} ^sub.domain.com | ||
+ | RewriteRule ^(.*)$ http://domain.com/subdomains/sub/$1 [L,NC,QSA] | ||
+ | #For a more general rule (that works with any subdomain, not just sub) | ||
+ | #replace the last two lines with this: | ||
+ | RewriteEngine on | ||
+ | RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com | ||
+ | RewriteRule ^(.*)$ http://domain.com/subdomains/%1/$1 [L,NC,QSA] | ||
= Authentifizierung mit .htaccess = | = Authentifizierung mit .htaccess = |