In php - the views in the ci framework are placed under the application directory. How to configure them to call these view pages?
伊谢尔伦2017-06-27 09:17:43
0
2
873
In the company's project, the view layer including css and js styles are written to the application directory. I would like to ask you all, how to set up the configuration file and can these style files be used?
No configuration file required, write directly in the view
require(__DIR__ . '/..../xxxx.css');
Like this
Of course, there is also a method based on server configuration. In the project domain name configuration, make address aliases for CSS/JS and images, such as mapping http://xxx/css/* to the css of the project applicationTable of contents.
No configuration file required, write directly in the view
Like this
Of course, there is also a method based on server configuration. In the project domain name configuration, make address aliases for CSS/JS and images, such as mapping
Table of contents.
http://xxx/css/*
to thecss of the project
applicationinclude() and require() should both work.