我有 ubuntu 14.04,我有一个带有 hhvm 和 apache2 的 wordpress 博客。
这是我的 apache2 站点配置:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/myblog
ServerName my.blog.com
ErrorLog ${APACHE_LOG_DIR}/myblog/error.log
CustomLog ${APACHE_LOG_DIR}/myblog/access.log combined
ProxyPassMatch ^/(.*.php(/.*)?)$ fcgi://127.0.0.1:9000/var/www/myblog/$1
</VirtualHost>
此配置会将所有 .php 请求重定向到我的 hhvm 服务器,其他文件(静态)将从 DocumentRoot 提供。
如何启用 wordpress 永久链接?这是 wordpress .htaccess 建议的:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
任何想法?谢谢