mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
use default_static_extension instead of page_cache_extension deprecated option [ci skip]
This commit is contained in:
parent
a0d5dca7a6
commit
d1ae6c5f70
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ Let's say you have a controller called `ProductsController` and an `index` actio
|
|||
|
||||
By default, the page cache directory is set to `Rails.public_path` (which is usually set to the `public` folder) and this can be configured by changing the configuration setting `config.action_controller.page_cache_directory`. Changing the default from `public` helps avoid naming conflicts, since you may want to put other static html in `public`, but changing this will require web server reconfiguration to let the web server know where to serve the cached files from.
|
||||
|
||||
The Page Caching mechanism will automatically add a `.html` extension to requests for pages that do not have an extension to make it easy for the webserver to find those pages and this can be configured by changing the configuration setting `config.action_controller.page_cache_extension`.
|
||||
The Page Caching mechanism will automatically add a `.html` extension to requests for pages that do not have an extension to make it easy for the webserver to find those pages and this can be configured by changing the configuration setting `config.action_controller.default_static_extension`.
|
||||
|
||||
In order to expire this page when a new product is added we could extend our example controller like this:
|
||||
|
||||
|
|
Loading…
Reference in a new issue