English 中文(简体)
如何在网上提供网站
原标题:How to make website available offline

即便用户能够清除海滩和厨师,我还是希望把我的网站放在网上。 是否可能? 我也在处理数据库问题。 能否从网上处理数据库?

最佳回答
  1. 用户可以储存 当地网页,使用 Chrome(right Point Save-as)并储存所有资源(images, cs, js),以完全装满该网页。 其他浏览器也将有类似的选择。

  2. 您可使用wget,浏览整个网站。

    wget --mirror --convert-links --html-extension -p http://www.example.com/
    

    当然,这两种选择都没有处理贵国网站/网页上数据库驱动的内容。

  3. 如果你想要 mo一个数据库或一个网页上的一个动态元素,那么 谷歌斯·可能是最接近你所期待的,但我认为去年谷歌已经对此做了解释。

问题回答

否,如果贵国的数据库存放在网上。 然后,你们需要PHP/ASP的互联网连接(无论你如何重新利用来与银行打交道),以便连接/通向银行。

你们可以使用简单的指挥,在当地下载整个网站,所有链接都能够妥善运作。

wget -rk  http://www.website.com 

https url, 您需要增加以下一种财产:

wget -rk --no-check-certificate  https://www.website.com 




相关问题
Inserting PDFs in SQLite

I am developing offline implementation of an iphone app. I cannot insert pdf files into sqlite DB. can anyone help me to insert pdf/xls into sqlite DB. Thanks in advance!

Large XML Files and Pagination, is it possible?

The problem When opening very large XML files locally, on your machine, it s almost a certainty that it will take an age for that file to open - it can often mean your computer locks down because it ...

iPhone UIWebView slow loading to local HTML files

I m developing an app that requires caching web pages (completely) along with their CSS files and images after saving the entire HTML of the page (going through the links to store each file along with ...

Prevent offline iphone webapp from opening link in Safari

I’m developing a website that will work with mobile safari in offline mode. I m able to bookmark it to the home screen and load it from there. But, once opened from the home screen, clicking on ...

Installing Silverlight plugin on offline PC - is it possible?

Let s presume you need to show your shiny new touchscreen-optimised Silverlight application to your boss during trans-atlantic flight. How can you do that on his notebook if the only thing you have is ...

HTML forms working offline

I need to be able to run HTML forms offline. I mean they have to work without direct connection to the web server. In an application I wrote over 5 years ago I did it by implementing a custom ...