在officiall documentation for Owncloud 9中说:
'htaccess.RewriteBase' => '/',
To have clean URLs without /index.php this parameter needs to be configured.
After setting this value run occ maintenance:update:htaccess [...]
然而,运行" occ维护:更新:htaccess"将导致错误:
There are no commands defined in the "maintenance:update" namespace.
我可以手动更新我的.htaccess文件吗?
答案 0 :(得分:2)
我刚刚在freenode.net上的#owncloud IRC上看到维护:更新:htaccess命令将在下一个次要版本中提供:9.0.3
显然文档已在代码本身之前更新。
与此同时,您确实可以自己编辑.htaccess。
在我的安装上,我会这样做:
sudo nano /var/www/owncloud/.htaccess
然后,在文件的最后一部分中,将RewriteBase行更新为:
RewriteBase /owncloud