Answer the question
In order to leave comments, you need to log in
How to glue these pages through htaccess?
How to glue these pages with a 301 redirect?
There are pages like this
mysite.ru/videos/category/1
mysite.ru/videos/category/2 and so
on, you need to make a 301 redirect from them to
mysite.ru/videos/category/1?page_id=1
mysite.ru/videos/ category/2?page_id=1
It should be taken into account that the page id may be different so that this does not suffer.
Answer the question
In order to leave comments, you need to log in
Use the window.pageYOffset variable.
More details here - https://www.w3schools.com/jsref/prop_win_pagexoffs...
RewriteRule ^videos/category/([0-9]{1,})$ /videos/category/1\?page_id=$1 [L,R=301]
RewriteRule ^videos/category/[0-9]{1,}$ /videos/category/1\?page_id=1 [L,R=301]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question