これが重複した質問である場合は申し訳ありませんが、この問題を解決する方法がわかりません。
現在、/var/www/html ディレクトリに wordpress サイトがあります。このワードプレス サイトは、サブドメインのように Pydio System (Secure File Sharing for business) と統合されています。どちらのシステムも ajaxplorer というプラグインでリンクされています。Pydio システムは /var/www/html/pydio ディレクトリにあります。つまり、これは wordpress サイトのサブディレクトリのようなものです。
http://mysite.example/pydioに移動すると、すべて正常に動作します...しかし、pydio システムを使用して、 http://mysite.example/pydio/ws-inbox/のような URL に移動すると、次に、ページを更新すると、再び wordpress サイトにリダイレクトされますが、URL は同じhttp://mysite.example/pydio/ws-inbox/のままで、wordpress 404 ページ エラーが表示されます。(投稿を探しているときのように)... pydioシステムに再度アクセスするには、http://mysite.example/pydio/に再度移動する必要があります。
私が望むのは、URLを更新するとhttp://mysite.example/pydio/ws-inbox/、同じPydioシステムに残り、ワードプレスにリダイレクトされないことです。
.htaccess を検索して作成しようとしましたが (以前は WP ディレクトリに .htaccess がなかったため)、成功しませんでした。
代わりに、Pydio フォルダーには次の .htaccess があります。
<IfModule mod_rewrite.c>
# You must set the correct values here if you want
# to enable webDAV sharing. The values assume that your
# Pydio installation is at http://yourdomain/
# and that you want the webDAV shares to be accessible via
# http://yourdomain/shares/repository_id/
RewriteEngine on
RewriteBase /dms
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^shares ./dav.php [L]
RewriteRule ^api ./rest.php [L]
RewriteRule ^ocs/ ./opencollab.php [L]
RewriteRule ^ocs-provider/ ./opencollab.php [L]
RewriteRule ^user ./index.php?get_action=user_access_point [L]
RewriteCond %{REQUEST_URI} !^/pydio/index
RewriteCond %{REQUEST_URI} !^/pydio/plugins
RewriteCond %{REQUEST_URI} ^/pydio/dashboard|^/pydio/settings|^/pydio/welcome|^/pydio/ws-
RewriteRule (.*) index.php [L]
#Following lines seem to be necessary if PHP is working
#with apache as CGI or FCGI. Just remove the #
#See http://doc.tiki.org/WebDAV#Note_about_Apache_with_PHP_as_fcgi_or_cgi
#RewriteCond %{HTTP:Authorization} ^(.*)
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
#Following lines may be necessary for a PHP-FPM setup
# to make sure that authorization is transmitted.
# Just remove the # at the beginning of the line
#SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
</IfModule>
AddType application/json .json
それで、誰かがこの問題を解決する方法を知っているでしょうか?
前もって感謝します!