Quote:
Originally Posted by Skyrider
Again:
the nginx config in the do_not_upload
Code:
location ~* \.(png|jpg|jpeg|gif|ico)$
{
expires 30d;
log_not_found off;
}
location /
{
try_files $uri $uri/ /dbseo.php;
}
location ~ ^((?!dbseo).)*\.php$
{
rewrite ^/(.*)$ /dbseo.php last;
}
location ~* \.(php)$
{
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php5-fpm.sock;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
}
Gives:
nginx: [emerg] duplicate location "/" in /xx/xxx/xxx.conf:7
The above is a clean config btw. No extra things has been added.
|
You need to merge the location entries found in our config file with your existing one. You can't have multiple directives for the same location, as evidenced by the error message
Quote:
Originally Posted by cdoyle
Are there some recommended settings that everyone should do?
I just checked out my Bing Webmaster tools, and since enabling this mod my metrics have took a nosedive. Not sure why.
My pages indexed were cut in half, same with pages crawled and my clicks from search is down 72%. Appeared in search is also down 63% since installing this.
Not sure what to do to improve that?
Any ideas?
|
There may be a transitional period where your content is reindexed with the new URLs
Be sure to enable the sitemap processing, that will ensure Bing gets alerted of any new content.
Fillip