'Redirecting pages from under subpage to under root path
Some pages on my site appear under example.com/subpage/. but I want to show them under example.com/. How should I change the following redirects?
For example I want to do
from: https://example.com/subpage/XXXXXX
to: https://example.com/XXXXXX
My RewriteRule
RewriteRule ^subpage/([0-9a-zA-Z-_]+) another-page.php?page_slug=$1 [L,QSA]
When I remove "subpage" from above code, the paths of the website's css and js files also change.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
