├── CHANGELOG.txt ├── COPYING.LESSER.txt ├── COPYING.txt ├── CREDITS.txt ├── INSTALL.txt ├── README.rst ├── README.txt ├── htaccess.example.txt ├── inc ├── languages │ └── english │ │ ├── admin │ │ ├── googleseo_plugin.lang.php │ │ └── googleseo_settings.lang.php │ │ └── googleseo.lang.php └── plugins │ ├── google_seo.html │ ├── google_seo.php │ └── google_seo │ ├── 404.php │ ├── meta.php │ ├── plugin.php │ ├── redirect.php │ ├── sitemap.php │ └── url.php ├── rewrite-lighttpd.txt ├── rewrite-nginx.txt └── robots.example.txt /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/COPYING.LESSER.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/COPYING.txt -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/README.rst -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/README.txt -------------------------------------------------------------------------------- /htaccess.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/htaccess.example.txt -------------------------------------------------------------------------------- /inc/languages/english/admin/googleseo_plugin.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/languages/english/admin/googleseo_plugin.lang.php -------------------------------------------------------------------------------- /inc/languages/english/admin/googleseo_settings.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/languages/english/admin/googleseo_settings.lang.php -------------------------------------------------------------------------------- /inc/languages/english/googleseo.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/languages/english/googleseo.lang.php -------------------------------------------------------------------------------- /inc/plugins/google_seo.html: -------------------------------------------------------------------------------- 1 | ../../README.rst -------------------------------------------------------------------------------- /inc/plugins/google_seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/404.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/meta.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/plugin.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/redirect.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/sitemap.php -------------------------------------------------------------------------------- /inc/plugins/google_seo/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/inc/plugins/google_seo/url.php -------------------------------------------------------------------------------- /rewrite-lighttpd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/rewrite-lighttpd.txt -------------------------------------------------------------------------------- /rewrite-nginx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/rewrite-nginx.txt -------------------------------------------------------------------------------- /robots.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostschutz/MyBB-Google-SEO/HEAD/robots.example.txt --------------------------------------------------------------------------------