2016年6月29日水曜日

cakephp3 subdirectory .htaccess edit

PHP Ver 5.6.27
CakePHP Ver 3.1.9



 レンタルサーバー等を利用した場合等にサブドメインをサブディレクトリに指定することがありますよね。
 その場合には、 以下の設定を変更しないとcakephp3がうまいこと動きません。
 ただ、これだけだけど数時間はまった・・・

  • レンタルサーバー利用時に変更しなければならない.htaccessのmod_rewirte設定
    • app/.htaccess
      • RewriteBase / を追加
    • app/webroot/.htaccess
      •  RewriteBase / を追加


2016年6月28日火曜日

cakephp3 sitemap plugin install

PHP Ver 5.6.27
CakePHP Ver 3.1.9


サイトマップを準備する

cakephp3 にはサイトマップ用のプラグインが準備されているので、利用する。

・インストール
  $ cd app/plugins/
  $ git clone https://github.com/fm-labs/cakephp3-sitemap Sitemap

・Bootstrap.phpにプラグインをロードする内容を追記
--------------------------------
    Plugin::load('Sitemap', ['autoload' => true, 'routes' => true]);
--------------------------------

・SitemapController.phpの作成
--------------------------------
<?php
namespace App\Controller; 

use App\Controller\AppController;

class SitemapController extends AppController
{
    public function initialize()
    {
        $this->loadComponent('Sitemap.Sitemap');
    }

    public function index()
    {
        $this->Sitemap->createIndex();

        $this->Sitemap->create();

            $this->Sitemap->addLocation(
                    ['controller' => '[ControllerName]', 'action' => '[ActionName]', $id], // url
                    1, // priority
                    $value->modified, // last modified date
                    'hourly' // change frequency
            );
    }
}
--------------------------------

Controllerの内容はapp/plugins/Sitemap/src/Controller/SitemapController.phpに記述されているので参考になります。

2016年6月27日月曜日

SEO対策 keyword 選定 tool

SEO対策 KeyWord選定ツール

  ブログ検索
    Ritlweb: http://blog.ritlweb.com/



  キーワード検索数予測ツール
    Rishirikonbu: http://rishirikonbu.jp/





    キーワードウォッチャー: https://www.keywordwatcher.jp/


    Uber: https://ubersuggest.io/


  キーワード検索数調査ツール
    Keyword Tool: http://keywordtool.io/

    GoodKeyword: http://goodkeyword.net/

    Freet+: http://tool.ferret-plus.com/

    SEOチェキ: http://seocheki.net/

    Ranking Checker: http://broadentry.com/rankingchecker/

    Bull: http://bullseo.jp/


  キーワード作成支援ツール
    Google Keyword Planner: https://adwords.google.com/ko/KeywordPlanner/Home