Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

htaccessで特定のファイル以外リダイレクトする処理作成。PHPでSNSを作成してみる#05

今回は、htaccessファイルを作成してリダイレクト処理を実装していきます。

https://hasethblog.com/it/programming/php/6526/

.htaccessで特定のファイル以外リダイレクトする処理

まずは、sns_trainingフォルダ直下に【.htaccess】ファイルを作成しましょう。

フォルダ構成がわからない方は下記リンクをご参考ください。
フォルダ構成

まずは、htaccessにどのような動作をしてほしいか要件をまとめます。

●要件
・sns_training/~にアクセスがあれば、すべてindex.phpにリダイレクト。
・画像やcss、jsやデータ定義ファイルは除く。
・index.phpにアクセスがあればリダイレクトは除く。(ループ防止)
上記の要件にしたがって実装します。

リダイレクト先を作成

今回はindex.phpにリダイレクトをする設定にするため
index.phpファイルをsns_trainingフォルダの直下作成

わかるように ”index.phpページです。”と記述しました。

sns_training
├── index.php
└── .htaccess

.htaccessに記述

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} !^/sns_training/index.php$
    RewriteCond %{REQUEST_URI} !^.*\.(gif|jpg|jpeg|png|swf|css|js|json)$ [NC]
    RewriteRule ^(.*)$ sns_training/index.php
</IfModule>

上記のように記述をすると要件を満たした設定が反映されます。

リダイレクトテスト

実際にリダイレクトされるかテストします。
ローカル環境下にあるので

無効なURLです

でアクセスします。
下の画像のように問題なく表示されました。

htaccessテスト
また、画像や指定したファイルはリダイレクトされない設定もきちんと反映されていますね。

おわりに

Apacheで使われるhtaccessという設定ファイルは、アクセスを制御する重要なファイルです。SaaSで使うぐらいですが。(本来、httd.confに記述した方がよい)

設定一つでセキュリティが脅かされることは当たり前のようにあります。
趣味レベルならよいですが、損害が出る場合は必ず、セキュリティ要件を満たす必要があります。

セキュリティは日々強固になっている一方で攻撃手法も増えています。
個人で学ぶのは至難の業です。
テックキャンプならプロの講師から徹底的なサポートで、プログラミングスキルを身につけることができます。

興味のある方はぜひ、無料カウンセリングでご相談してみてください。
オンラインカウンセリングについて詳しくみる


以上です。ありがとうございます。

コメント

  1. […] 今回は、前回作成したindex.phpからkernel、webの順に処理を流しweb内で リクエストをコントローラに渡す仕組みにします。 […]

スポンサーリンク
スポンサーリンク
タイトルとURLをコピーしました