Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
RewriteRule module is needed for this task RewriteRule
directive:
RewriteRule ^PATTERN$ /REDIR [FLAGS]
RewriteRule ^user/([0-9]+)$ /users/profile/$1 [L,QSA] - will redirect all site.com / user/ ([0-9]+) to /users/profile/ $1
All pages that match the regular expression ^user/([0-9]+)$ (e.g. site.com /user/23 ) will be redirected to site .com /users/profiles/123
Code .htaccess:
RewriteEngine On
RewriteBase /
RewriteRule ^id([0-9]+)/?$ /userstorage/$1/index.html [L,QSA]
RewriteRule ^id([0-9]+)/main.css?$ /userstorage/$1/main.css [L,QSA]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question