使用 CakePHP 设置项目
如果您将文档根目录设置为 C:\xampp\htdocs\ 并创建一个名为“ProjectX”的项目文件夹,其中包含所有项目文件、文件夹和子文件夹,那么如何使您的项目可以通过 url“http: //本地主机/projectx”?我想了解您的项目中包含的配置和路由文件是如何更改的?
If you setup your document root as C:\xampp\htdocs\ and you create a project folder named "ProjectX" where you include all your project files and folders and subfolders, how are you going to make your project runnable with url "http://localhost/projectx" ? I would like to learn how your config and routes files you included in your projects are changed ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以参考下面的链接
http://book.cakephp.org/1.3/en/查看/912/安装
干杯
you can refer below link
http://book.cakephp.org/1.3/en/view/912/Installation
cheers
我不会将它们作为“localhost”运行。
如果你将 css/js/img 绝对链接到 / 根目录,稍后你的生命服务器上将会遇到问题。
最好使用虚拟主机并在系统上模拟“现实生活”:
http://www.dereuromark.de/2011/05/ 29/本地使用域/
I would not run them as "localhost".
If you link css/js/img absolute to the / root, you will run into problems later on your life server.
it is always best to use virtual hosts and simulate the "real life" on your system:
http://www.dereuromark.de/2011/05/29/working-with-domains-locally/
您可以在
C:\xampp\htdocs\
中创建一个文件夹projectx
,然后复制
C:\xampp\htdocs\projectx\
中的所有CakePHP文件> (包括 .htaccess、app\、lib\ 等。设置 salt、cypher、db 文件,您应该能够通过http://localhost/projectx/
访问它You can create a folder
projectx
inC:\xampp\htdocs\
Then copy all the CakePHP files in
C:\xampp\htdocs\projectx\
(including .htaccess, app\, lib\ and all. Setup the salt, cypher, db files and you should be able to access it throughhttp://localhost/projectx/