《Go Web 编程》PHP网站版:PHP-For-Go-Web

WBOY
Libérer: 2016-06-20 12:45:11
original
1047 Les gens l'ont consulté

PHP-For-Go-Web 是用 php+bootstrap3 来解析《Go Web 编程》的 md 文件。构建本地或者远程网站。妈妈再也不用担心我的网速了。

  • 从https://github.com/astaxie/build-web-application-with-golang/tree/master/zh 获取md文件

  • 从https://github.com/erusev/parsedown 获取 Markdown 格式数据的 PHP 解析类库

  • 使用 PHP 解析得到 html 数据

  • 使用 Bootstrap 显示最终的html页面

我不生产代码,我是代码的搬运工!展示站点:http://go.webiji.com

安装配置

[ Apache ]

httpd.conf配置文件中加载了mod_rewrite.so模块AllowOverride None 将None改为 All把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?file=$1 [QSA,PT,L]</IfModule>
Copier après la connexion

本项目在wampserver下开发并且通过测试。建议使用wampserver环境。

[ IIS ]

如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:

RewriteRule (.*)$ /index\.php\?file=$1 [I]
Copier après la connexion

[ Nginx ]

通过在Nginx.conf中配置转发规则实现:

location / { // …..省略部分代码   if (!-e $request_filename) {   rewrite  ^(.*)$  /index.php?file=$1  last;   break;    } }
Copier après la connexion

如果你的项目安装在二级目录,Nginx的伪静态方法设置如下,其中goweb是所在的目录名称。

location /goweb/ {    if (!-e $request_filename){        rewrite  ^/goweb/(.*)$  /goweb/index.php?file=$1  last;    }}
Copier après la connexion

项目主页:http://www.open-open.com/lib/view/home/1446558564638

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!