Welcome! Log In Create A New Profile

Advanced

Re: Help translating Apache RewriteRules - Again, Thoroughly

Chris Cortese
April 08, 2010 07:08AM
thanks, but still no luck, still looping.

What about this part? What is the nginx equivalent of this? Where is
there documentation on this?

[code]
<Directory "/home/mylinuxuser/www/live/domain.com">
allow from all
Options -Indexes FollowSymLinks ExecCGI
AllowOverride All
</Directory>
<Directory "/home/mylinuxuser/www/live/domain.com">
Options -Indexes ExecCGI FollowSymLinks
</Directory>

[/code]


Meanwhile I'm going to have to resort to xdebug maybe, and/or I'm also
getting my RHEL5 VM w/Apache into shape ... to also run via xdebug I
guess... incredible... all for this one rewriterule. :(



Chris



On 4/8/2010 2:06 AM, Edho P Arief wrote:
> On Thu, Apr 8, 2010 at 3:44 PM, Chris Cortese
> <cortese.consulting@gmail.com> wrote:
>> I'm still stumped on this one. Can anyone tell why I'm getting an endless
>> loop? Firefox gives:
>>
>> [code]
>> The page isn't redirecting properly
>>
>> Firefox has detected that the server is redirecting the request for this
>> address in a way that will never complete.
>> * This problem can sometimes be caused by disabling or refusing to accept
>> cookies.
>> [/code]
>>
>>
>>
>> Machine:
>> [code]
>> . Ubuntu Karmic Koala fully-upgraded/updated, VM running on VMWare
>> Workstation 6.5 running on Windows XP
>> . nginx 0.8.35 built from source
>> . php-5.3.2 with php-fpm
>> [/code]
>>
>>
>>
>> Working .htaccess Apache file:
>> [code]
>> Options -Indexes
>>
>> RewriteEngine On
>> RewriteCond %{SCRIPT_FILENAME} !-f
>> RewriteCond %{SCRIPT_FILENAME} !-d
>> RewriteRule ^([0-9a-zA-Z\/\-\_\@]+)$ index.php?demand=$1 [QSA,L]
>> #RewriteRule ^(.*)$ index.php?demand=$1 [NC,L]
>>
>>
>
> simple way:
>
> server {
> listen 80;
> server_name mysite.com.vmware;
>
> access_log /usr/local/nginx/logs/mysite.com.access.log;
> error_log /usr/local/nginx/logs/mysite.com.error.log;
>
> root /home/mylinuxuser/www/live/mysite.com;
> index index.php;
>
> location ~ ^/[0-9a-zA-Z/\-_@]+$ {
> rewrite ^/([0-9a-zA-Z/\-_@]+)$ /index.php?demand=$1 last;
> }
> location ~ \.php$ {
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_param SCRIPT_FILENAME $request_filename;
> include /usr/local/nginx/conf/fastcgi_params;
> }
> }
>
> faster way:
>
> server {
> listen 80;
> server_name mysite.com.vmware;
>
> access_log /usr/local/nginx/logs/mysite.com.access.log;
> error_log /usr/local/nginx/logs/mysite.com.error.log;
>
> root /home/mylinuxuser/www/live/mysite.com;
> index index.php;
>
> location ~ ^/[0-9a-zA-Z/\-_@]+)$ {
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_param SCRIPT_FILENAME
> /home/mylinuxuser/www/live/domain.com/index.php;
> fastcgi_param QUERY_STRING demand=$1;
> include /usr/local/nginx/conf/fastcgi_params0;
> }
> location ~ \.php$ {
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_param SCRIPT_FILENAME $request_filename;
> include /usr/local/nginx/conf/fastcgi_params;
> }
> }
>
>


_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

Help translating Apache RewriteRules

Chris Cortese April 07, 2010 03:30AM

Re: Help translating Apache RewriteRules

Igor Sysoev April 07, 2010 04:08AM

Re: Help translating Apache RewriteRules

Igor Sysoev April 07, 2010 04:10AM

Re: Help translating Apache RewriteRules

Chris Cortese April 07, 2010 04:26AM

Re: Help translating Apache RewriteRules - Again, Thoroughly

Chris Cortese April 08, 2010 04:52AM

Re: Help translating Apache RewriteRules - Again, Thoroughly

edogawaconan April 08, 2010 05:10AM

Re: Help translating Apache RewriteRules - Again, Thoroughly

Chris Cortese April 08, 2010 07:08AM

Re: Help translating Apache RewriteRules - Again, Thoroughly

edogawaconan April 08, 2010 09:28AM

Re: Help translating Apache RewriteRules - Again, Thoroughly

Chris Cortese April 08, 2010 02:24PM

Re: Help translating Apache RewriteRules

Chris Cortese April 07, 2010 04:26AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 259
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready