E
eMASTER
Прохожие
- Автор темы
- #1
В общем сам htaccess
Это конфиг nginx
Не работает редирект - "The page isn't redirecting properly"
У кого-нибудь есть идеи?
Код:
AddDefaultCharset UTF-8
DirectoryIndex index.php
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
<FilesMatch "^cron.php$">
Order allow,deny
Deny from all
</FilesMatch>
Это конфиг nginx
Код:
location / {
root /var/www/proxy;
index index.php;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php last;
}
}
Не работает редирект - "The page isn't redirecting properly"
У кого-нибудь есть идеи?