ハマログ

株式会社イーツー・インフォの社員ブログ

Amazon CloudFrontを.htaccessで適用

Amazon CloudFrontを.htaccessを利用してウェブサービスに適用させました。
.htaccessで対応できるくらいの単純さであれば、導入も簡単です。



Amazon CloudFront の機能

手順

RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !^Amazon\ CloudFront$
RewriteCond %{REQUEST_URI} .(jpg|gif|png|css|js)$ [NC]
RewriteRule ^/?(.*)$ https://xxxxxxxxxx.cloudfront.net/$1 [NE,R=302,L]

一部のJSが動かなくなったので除外しました

RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !^Amazon\ CloudFront$
RewriteCond %{REQUEST_URI} !(^/newsPlugin/js/)
RewriteCond %{REQUEST_URI} .(jpg|gif|png|css|js)$ [NC]
RewriteRule ^/?(.*)$ https://xxxxxxxxxx.cloudfront.net/$1 [NE,R=302,L]

ステージング環境で動作しないように、ホストを制限しました。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.co\.jp
RewriteCond %{HTTP_USER_AGENT} !^Amazon\ CloudFront$
RewriteCond %{REQUEST_URI} !(^/newsPlugin/js/)
RewriteCond %{REQUEST_URI} .(jpg|gif|png|css|js)$ [NC]
RewriteRule ^/?(.*)$ https://xxxxxxxxxx.cloudfront.net/$1 [NE,R=302,L]

以上、メモでした。

AWSCDNCloud Fronthtaccess

  kaneko tomo   2017年2月3日


関連記事

AWS Cloud Quest

Amazonは暇なのか 暇を持て余しているのだろうか。 こんなものを作ったようだ…

GitリポジトリができたのでEclipseからうごかすマニュアル

こんにちは、かねこです。 この記事には、EclipseにEGitプラグインを設定…

DockerでMySQLの環境を構築してみる

前々からやってみないと、とは思っていたけど後回しにしていたDockerを時間がで…


← 前の投稿

次の投稿 →