<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Global Redirect module not working on Drupal and nginx server?</title>
	<atom:link href="http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server</link>
	<description>Web Design &#38; Development, SEO and Project Management</description>
	<lastBuildDate>Thu, 15 Dec 2011 08:22:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Michael Lustfield</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-10999</link>
		<dc:creator>Michael Lustfield</dc:creator>
		<pubDate>Wed, 23 Jun 2010 14:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-10999</guid>
		<description>I take that back... If is still not needed...

location / {
        try_files $uri $uri/ /index.php?q=$request_uri;
}</description>
		<content:encoded><![CDATA[<p>I take that back&#8230; If is still not needed&#8230;</p>
<p>location / {<br />
        try_files $uri $uri/ /index.php?q=$request_uri;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Lustfield</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-10998</link>
		<dc:creator>Michael Lustfield</dc:creator>
		<pubDate>Wed, 23 Jun 2010 14:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-10998</guid>
		<description>In one word... THANKS!
I fought with this a lot. Turns out that I was doing everything without an if. After all - IfIsEvil (from the nginx wiki). I guess this is one time where IfIsNotThatEvil.</description>
		<content:encoded><![CDATA[<p>In one word&#8230; THANKS!<br />
I fought with this a lot. Turns out that I was doing everything without an if. After all &#8211; IfIsEvil (from the nginx wiki). I guess this is one time where IfIsNotThatEvil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-9061</link>
		<dc:creator>Ronald</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-9061</guid>
		<description>Son of a b**** -

I&#039;ve been stumped for 6 hours now. I&#039;ve dropped and re-dropped the system tables. I&#039;ve been all over the house trying to work out what&#039;s going on. And now it was this?

For f*** sake

At least it&#039;s working now.

Thank you</description>
		<content:encoded><![CDATA[<p>Son of a b**** -</p>
<p>I&#8217;ve been stumped for 6 hours now. I&#8217;ve dropped and re-dropped the system tables. I&#8217;ve been all over the house trying to work out what&#8217;s going on. And now it was this?</p>
<p>For f*** sake</p>
<p>At least it&#8217;s working now.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burnz</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-6899</link>
		<dc:creator>Burnz</dc:creator>
		<pubDate>Fri, 20 Nov 2009 06:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-6899</guid>
		<description>Hi,

Same with me i can&#039;t make global redirect works. im using nginx version: nginx/0.7.62 and global redirect 6.x-1.2.. 

why its now working even if i have this config in nginx:
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
break;
}

Please help.

Thank you.
Burnz</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Same with me i can&#8217;t make global redirect works. im using nginx version: nginx/0.7.62 and global redirect 6.x-1.2.. </p>
<p>why its now working even if i have this config in nginx:<br />
if (!-e $request_filename) {<br />
rewrite ^/(.*)$ /index.php?q=$1 last;<br />
break;<br />
}</p>
<p>Please help.</p>
<p>Thank you.<br />
Burnz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webopius</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-1914</link>
		<dc:creator>Webopius</dc:creator>
		<pubDate>Sun, 03 May 2009 10:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-1914</guid>
		<description>Hi Leighton,
If you contact me directly (info@webopius.com), I&#039;d be happy to take a look at your site and nginx config to see what the problem might be. Initial thoughts are the site config or fastcgi configuration.

I&#039;m sure you have it, but remember to include this line in your nginx site configuration file:

if (!-e $request_filename) {
   rewrite  ^/(.*)$  /index.php?q=$1  last;
   break;
}


Also, this is mt fastcgi configuration file used by nginx:
fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx;
fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;</description>
		<content:encoded><![CDATA[<p>Hi Leighton,<br />
If you contact me directly (info@webopius.com), I&#8217;d be happy to take a look at your site and nginx config to see what the problem might be. Initial thoughts are the site config or fastcgi configuration.</p>
<p>I&#8217;m sure you have it, but remember to include this line in your nginx site configuration file:</p>
<p>if (!-e $request_filename) {<br />
   rewrite  ^/(.*)$  /index.php?q=$1  last;<br />
   break;<br />
}</p>
<p>Also, this is mt fastcgi configuration file used by nginx:<br />
fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;<br />
fastcgi_param  SERVER_SOFTWARE    nginx;<br />
fastcgi_param  QUERY_STRING       $query_string;<br />
fastcgi_param  REQUEST_METHOD     $request_method;<br />
fastcgi_param  CONTENT_TYPE       $content_type;<br />
fastcgi_param  CONTENT_LENGTH     $content_length;<br />
fastcgi_param  REQUEST_URI        $request_uri;<br />
fastcgi_param  DOCUMENT_URI       $document_uri;<br />
fastcgi_param  DOCUMENT_ROOT      $document_root;<br />
fastcgi_param  SERVER_PROTOCOL    $server_protocol;<br />
fastcgi_param  REMOTE_ADDR        $remote_addr;<br />
fastcgi_param  REMOTE_PORT        $remote_port;<br />
fastcgi_param  SERVER_ADDR        $server_addr;<br />
fastcgi_param  SERVER_PORT        $server_port;<br />
fastcgi_param  SERVER_NAME        $server_name;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leighton Whiting</title>
		<link>http://www.webopius.com/content/199/global-redirect-module-not-working-on-drupal-and-nginx-server/comment-page-1#comment-1901</link>
		<dc:creator>Leighton Whiting</dc:creator>
		<pubDate>Sun, 03 May 2009 02:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.webopius.com/content/?p=199#comment-1901</guid>
		<description>Hey, I was experiencing the same problem as you with the NGINX and Global Redirect Module. I also traced the problem to the $_SERVER[&#039;SCRIPT_NAME&#039;] variable, but when I tried commenting it out, I got the Redirect Loop error. I found your post after this but I still can&#039;t figure out what to do now. Any ideas? Thanks</description>
		<content:encoded><![CDATA[<p>Hey, I was experiencing the same problem as you with the NGINX and Global Redirect Module. I also traced the problem to the $_SERVER['SCRIPT_NAME'] variable, but when I tried commenting it out, I got the Redirect Loop error. I found your post after this but I still can&#8217;t figure out what to do now. Any ideas? Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.265 seconds -->

