Рестлер возвращает код состояния 404, если index.php не включен в URL - PullRequest
2 голосов
/ 10 января 2012

Прежде всего, спасибо за RESTLER Framework, это прекрасно!

Я установил Restler API на "http://api.odience.net/". Restler отвечает правильным телом ответа, но возвращает код состояния 404, если я нея не включил index.php в URL. Я настроил файл .htaccess, как указано в примерах, но не могу понять, почему он не отвечает с правильным кодом состояния.

Пример:

* - Доступ к / sandbox / about / products / en.json (и передача некоторых переменных GET + вызов метода about из sandbox.php) возвращает заголовок 404, даже если теловозвращенные данные верны!

* - Если мы добавим файл «index.php» в URL, заголовки в порядке!

Попробуйте: Доступ / index.php / sandbox /about / products / en.json (с теми же переменными GET)

Вот мой подробный файл .HTACCESS для корневого каталога Restler:

## Can be commented out if causes errors.
Options +FollowSymLinks
<IfModule mod_rewrite.c>
    RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.
##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your API Directory (just / for root).
##
RewriteBase /

#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the reg server folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /server/|(/[^.]*|\.(php|html?|json|xml|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule ^.*$ index.php [QSA,L]
#

</IfModule>

Чтобы защитить среду Restler,Файлы библиотеки рестлеров недоступны для Интернета, и файл API_ROOT / index.php включает их автоматическитик с командой require_once.

Посоветуйте, пожалуйста, как заставить эту настройку работать как положено?

1 Ответ

0 голосов
/ 09 февраля 2012

Измените% {REQUEST_FILENAME} в файле .htaccess на% {DOCUMENT_ROOT}% {REQUEST_FILENAME} (это сработало для меня) Ниже приведено содержимое моего файла .htaccess.HTH

RewriteEngine On 
RewriteBase / 
RewriteRule ^$ index.php [QSA,L] 
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f 
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php [L,QSA] 
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...