继承了Joomla站点,但只用到了HTML和CSS。 Dreamweaver 仍然是一个选择吗?
大约 12 年以来,我一直在 Dreamweaver 中甚至在 Homesite 中开发几个不同的网站。也就是说,我已经非常习惯具有明确结构的传统 URL 设置,您可以在逻辑上遵循目录设置,并且非常清楚如何对相对/绝对链接等进行编程。我要么在 Dreamweaver 中通过 FTP 传输文件,要么使用某种管理控制台。最近,我接受了一份新工作,为目前使用 Joomla 构建的网站提供帮助。我正在寻找是否有办法将整个网站放在我的硬盘上,以便我可以在本地处理它,然后在页面完成后上传,或者至少找出如何最好地使用该网站。
Joomla 有很多关于从头开始创建页面的内容,但我确实尽力调查已经开发的网站,并找到方法进行必要的调整并清点网站上的所有内容。任何帮助将不胜感激。
谢谢。
For about 12 years I've been working on a couple different web sites in Dreamweaver or even wayback in Homesite. That said, I've gotten very comfortable with the traditional set up of URLS with definite structures where you can logically follow the directory set-up and it was very clear how to program the relative/absolute links and more. I would either FTP the files through in Dreamweaver or would use some kind of Management Console. Recently I took a new job to help on a web site that currently lives and was built using Joomla. I'm looking to see if there is a way to get this entire site on my Hard Drive so I can work on it locally and then upload as pages are finished, or at the very least find out how best to work with this site.
Joomla has many things about starting a page from scratch, but I'm really trying my best to investigate a site that's already developed and find ways to make the necessary adjustments and take inventory of everything that's on the site. Any help would be much appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了管理 Joomla 中的站点,本地不需要任何文件。您可以通过网站的管理后端添加、编辑和删除页面。整个站点是根据 URL 的查询字符串构建的。该字符串确定哪个组件正在显示内容以及要显示哪些内容。
Joomla 站点中实际上只有一个页面,即当前模板目录中的index.php 文件。每个页面都是使用该页面构建的。您唯一需要修改该页面的时间是当站点发生结构变化时。即使如此,如果模板编码良好,它应该有各种可供使用的模块位置,这些位置在不使用时会折叠起来。这样,您只需调整特定页面上显示的模块即可在一个页面上拥有 3 列布局,在另一页上拥有 2 列布局。
我强烈建议您在编辑任何文件之前先阅读一些教程。这里有一些不错的资源:
http: //www.virtuosimedia.com/dev/php/joomla-administration-explained-a-joomla-15-admin-tutorial
http://www.joomlahack.com/tutorials
http://docs.joomla。组织/初学者
In order to administer a site in Joomla, there is no need to have any files locally. You can add, edit, and delete pages all through the administrative back end of the website. The entire site is built based on the query string of the URL. The string determines which component is displaying the content and which content to display.
There is really only one page in a Joomla site, the index.php file in the current template directory. Every page is built using that page. The only time you would need to modify that page is when there is a structural change in the site. Even then, if the template is well coded it should have various module positions available for use that collapse when they are not in use. This allows you to have a 3 column layout on one page and a 2 column layout on another simply by adjusting which modules display on a particular page.
I would highly recommend reading some tutorials before messing around with editing any files. Here are a few decent resources:
http://www.virtuosimedia.com/dev/php/joomla-administration-explained-a-joomla-15-admin-tutorial
http://www.joomlashack.com/tutorials
http://docs.joomla.org/Beginners
Joomla 的部分目的是能够管理网站的内容,而不需要所有页面的本地副本。所以你所问的问题首先就违背了使用 Joomla 的目的。要执行您要求的操作,您必须获取整个网站的离线副本,卸载 Joomla,然后上传您的“静态”副本。我预测最终结果将是一个很难维护的网站。
如果您真的想这样做,您可以使用 HTTrack 等网站复制工具。它应该用于复制网站,以便您可以离线浏览,但最终结果正是您正在寻找的:网站的本地副本。
Part of the purpose of Joomla is to be able to manage the content of a website without requiring local copies of all the pages. So what you are asking sort of defeats the purpose of using Joomla in the first place. To do what you ask you would have to get an offline copy of the entire website, uninstall Joomla, and then upload your "static" copy. I would predict that the end result would be a web site that is very hard to maintain.
If you really really want to do this you could use a website copy tool like HTTrack. It supposed to be used to copy a website so you can browse offline, but the end result is what you are looking for: a local copy of the website.