刚刚更新了我的 restler 3 以发布候选 4 以尝试 oAuth2 实现。我有一个restler 3服务器和客户端,服务器应该提供一个oAuth2.0服务器,客户端应该实现oAuth2.0。但是 oAuth2.0 客户端示例 index.php 页面保持为空。我做错了什么?我将所有权限递归设置为 777 并安装了 composer 的任何依赖项(我是 composer 新手)。但是这些东西被下载到了restler的供应商文件夹中,所以它就在那里。
感谢阅读和回答。简
该.htaccess
文件将关闭 display_errors。这就是为什么你得到一个空白的回应。
如下图所示进行更改
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule mod_php5.c>
php_flag display_errors On
</IfModule>
然后你就会得到线索!