阿里云Ubuntu系统+Apache2+PHP搭建gitblog

来源:互联网 发布:火箭引擎 知乎 编辑:程序博客网 时间:2024/06/04 21:16

阿里云Ubuntu系统+Apache2+PHP搭建gitblog

Apache2以及PHP的安装这里就不介绍了,网上一大堆。唯一需要总结的就是gitblog安装过程中的问题需要解决。

我遇到的问题是无法生成404 Not Found

需要apache支持rewrite, 改动有三处

  1. 修改内容apache2.conf, 在末尾加上

    LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so

  2. 修改 “AllowOverride None” 中的 “None” 为 “All”;

    Options FollowSymLinksAllowOverride AllRequire all denied
  3. 在网站的根目录添加.htaccess,内容如下

    RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteCond $1 !^(index\.php|images|robots\.txt)RewriteRule ^(.*)$ /index.php/$1 [L]
0 0