I've enabled option 301 Redirect Original Content
So, blog url like /entry.php?b=964 is not redirecting to new like /news/1/964-title/
All forum links redirect perfectly.
This is a discussion on Blog url entry not redirecting to new within the Bug Reporting forums, part of the vBSEO SEO Plugin category; I've enabled option 301 Redirect Original Content So, blog url like /entry.php?b=964 is not redirecting to new like /news/1/964-title/ All ...
I've enabled option 301 Redirect Original Content
So, blog url like /entry.php?b=964 is not redirecting to new like /news/1/964-title/
All forum links redirect perfectly.
Hello,
are you using default vBSEO rewrite rules in apache .htaccess or nginx configuration?
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Going to /entry.php?b=964 it stays on this URL, no redirect to new...
member.php, showthread.php redirect.
I see, but what are the rewrite rules you use?
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
It is usallt httpaccess error
What rewrite rules I must use for this? I have nginx.
Are you using the supplied nginx rewrites (found in the htaccess folder)? These should work by default.
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Nginx rewrites included in the package is not too good.
Now I use that and all works fine.
Code:location / { rewrite ^/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last; try_files $uri /vbseo.php?$args; } location ~ /(admincp/|modcp/|cron|vbseo_sitemap|install|api\.php|login\.php|vbseo\.php) { fastcgi_index index.php; set $_php_script $fastcgi_script_name; include phpfcgi.conf; } location ~ /(.*\.php)$ { rewrite ^(.*)$ /vbseo.php last; } location /vbseo/resources/(xml|html) { deny all; }