我只是在ubuntu 15.04上的localhost中将Buddypress安装到我现有的Wordpress站点。但是,buddypress需要将永久链接更改为默认永久链接以外的其他内容。我只是将其改为
/%样品交%/
无论我选择哪种永久链接,它都会给我同样的错误
在此处找不到请求的URL / ocpasl / issuses / server.Apache / 2.4.10(Ubuntu)服务器在localhost端口80
这是我的.htaccess文件。
#BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ocpasl/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /ocpasl/index.php [L]
</IfModule>
#END WordPress
会出现什么问题。以及如何解决这个问题。?
答案 0 :(得分:1)
可能在您的apache配置文件中没有设置AllowOverride All,您可以通过编辑vhosts或apache config(httpd.conf)文件来启用它。
这是一个示例配置
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
更改
AllowOverride无
到
AllowOverride All