https://github.com/schnti/kirby-robots
Kirby 3 CMS plugin that adds a route for robots.txt
https://github.com/schnti/kirby-robots
cms getkirby kirby3-cms kirby3-plugin robots-txt
Last synced: 3 months ago
JSON representation
Kirby 3 CMS plugin that adds a route for robots.txt
- Host: GitHub
- URL: https://github.com/schnti/kirby-robots
- Owner: schnti
- License: mit
- Created: 2019-11-29T10:06:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T18:53:38.000Z (about 2 years ago)
- Last Synced: 2025-02-27T00:57:17.220Z (4 months ago)
- Topics: cms, getkirby, kirby3-cms, kirby3-plugin, robots-txt
- Language: PHP
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# (simple) robots.txt Plugin
A plugin for [Kirby CMS](http://getkirby.com) that generates an `robots.txt`.
## Commercial Usage
This plugin is free but if you use it in a commercial project please consider
- [making a donation](https://www.paypal.me/schnti/5)
## Installation
### Download
[Download the files](https://github.com/schnti/kirby-robots/archive/master.zip) and place them inside `site/plugins/robots`.
### Composer
```
composer require schnti/robots
```### Git Submodule
You can add the plugin as a Git submodule.$ cd your/project/root
$ git submodule add https://github.com/schnti/kirby-robots.git site/plugins/robots
$ git submodule update --init --recursive
$ git commit -am "Add Kirby robots.txt plugin"Run these commands to update the plugin:
$ cd your/project/root
$ git submodule foreach git checkout master
$ git submodule foreach git pull
$ git commit -am "Update submodules"
$ git submodule update --init --recursive## How to use it
Nothing required.
The [schnti/kirby-sitemap](https://github.com/schnti/kirby-sitemap) plugin is recommended.