memo.xight.org

日々のメモ

天虎

Summary

大門,芝公園付近のラーメン屋.
一三五がオススメ!
11:30と16:30の開店直後でないとすぐ混んでしまう.

Data

住所 東京都港区芝大門2-9-8
営業時間 11:30 - 15:30 , 16:30 - 20:00
定休日 土曜・日曜・祝日
電話 03-3432-1057
最寄駅 浜松町 / 大門 / 芝公園

東京都港区芝大門2-9-8 (天虎)

Reference

livedoorグルメ - 天虎
http://tokyo.gourmet.livedoor.com/restaurant/info/24057.html

リダイレクトの問題

  mod_rewriteを利用する場合
# For sites running on a port other than 80
RewriteCond %{HTTP_HOST}   !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST}   !^$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*)         http://www.example.com:%{SERVER_PORT}/$1 [L,R]
# And for a site running on port 80
RewriteCond %{HTTP_HOST}   !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST}   !^$
RewriteRule ^/(.*)         http://www.example.com/$1 [L,R]


RewriteEngine on
RewriteCond %{HTTP_HOST} ^(example\.lolipop\.jp|www\.example\.com)(:80)?
RewriteRule ^(.*) http://example.com/$1 [R,L]"


name-based virtual hosting

NameVirtualHost *

<VirtualHost *>
  ServerName www.example.net
  ServerAlias example.com
  Redirect permanent / http://www.example.com/
</VirtualHost>

<VirtualHost *>
  ServerName www.example.com
  DocumentRoot /usr/local/apache/htdocs
</VirtualHost>


Reference

Apache Server Frequently Asked Questions - Configuration Questions - My site is accessible under many different hostnames; how do I redirect clients so that they see only a single name?
http://www.apache.jp/docs/misc/FAQ.html#canonical-hostnames
独自ドメイン運営助け合い掲示板 - サブドメインのアドレスを
http://lolipoking.lolipop.jp/domain/patio.cgi?mode=view&no=4