Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Maxxius Posted October 31, 2019 Posted October 31, 2019 Hi everyone, I tried moving my site of the original server which is Nginx and not apache and immediately I got fURL redirection problems. I had these set up by former admin when I was on 3.4 and it was working great. But now in 4.0 its not working. Is it true that these values for rewrite to work must be edited in etc/nginx/sites-available/website.com.vhost file alone. Nowhere else? In my case I use IPSconfig and you can add entries in website options. But I think these values end up in the same files anyway. What configuration has to be in the file for 4.4 IPS version to function and redirect properly? So far I tried putting location / { try_files $uri $uri/ @ips; } and then location / { try_files $uri $uri/ /index.php; } but none of them seemed to work. 😕
Maxxius Posted October 31, 2019 Author Posted October 31, 2019 Had to upgrade the nginx for it to work. Now basic redirects work, yay! However, now I need this also to work badly on nginx: http://www.website.com/forums/blogs/* -> http://www.website.com/blogs/*http://www.website.com/forums/gallery/* -> http://www.website.com/gallery/*http://www.website.com/forums/files/* ->http://www.website.com/files/* I actually need the part forums dropped from the URL only when the address is going for forums+blogs/gallery/files. Don't want to loose that google traffic. I tried using what @newbie LAC provided which works in apache RewriteRule ^forums/(blogs|gallery|files)/(.*)$ /$1/$2 [L,R=301] and when I use a online converter apache->nginx I get this and this does not work at all. location /forums { rewrite ^/forums/(blogs|gallery|files)/(.*)$ /$1/$2 redirect; } anyone got idea how to rewrite that for nginx? @ASTRAPI @Makoto please 🙂
Recommended Posts
Archived
This topic is now archived and is closed to further replies.