Quantcast
Channel: .htaccess – w3toppers.com
Viewing all articles
Browse latest Browse all 10

Using regular expression in htaccess for 301 redirects

$
0
0

Using mod_alias:

RedirectMatch 301 ^/news/(.+?)(-[0-9]+)?$ /blog/$1

or using mod_rewrite:

RewriteEngine On
RewriteRule ^news/(.+?)(-[0-9]+)?$ /blog/$1 [L,R=301]

Viewing all articles
Browse latest Browse all 10

Trending Articles