Jump to content
  • 0

htaccess rewrite, зависимость от домена


Veseloff
 Share

Question

В общем суть в следующем: есть набор сайтов (пока что три, может быть любое количество), работающих на одном движке. То есть набор скриптов один, БД одна, разные только шаблоны. Набор шаблонов выдаётся в зависимости от домена, проверяется это в PHP и проблем нет. Но есть файлы favicon.ico и robots.txt — они должны выдаваться разные для каждого из доменов. Сейачс пока сайты живут на сервере для девелопмента, то всё это делается просто черех nginx:


if ($host = somehost.com) {
rewrite /favicon.ico /some.ico last;
}

if ($host = anotherhost.com) {
rewrite /favicon.ico /another.ico last;
}

А как это делается при помощи htaccess? Сайт просто будет жить на виртуальном хостинге, где есть apache и htaccess — больше доступа ни к чему нет.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0


RewriteEngine On
RewriteBase /

# Site 1
RewriteCond %{HTTP_HOST} ^site1\.ru$
RewriteRule ^favicon.ico$ site1.ico [L,QSA]

# Site 2
RewriteCond %{HTTP_HOST} ^site2\.ru$
RewriteRule ^favicon.ico$ site2.ico [L,QSA]

Решение "в лоб". Можно более универсальную версию сделать: в зависимости от домена, шаблоны берутся из определенной папки. Например, для site1.com шаблон берется из /site1. Тогда не нужно постоянно копировать правило. Достаточно создать его единожды.

Edited by Radiocity
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy