Skip to content

Instantly share code, notes, and snippets.

@xlimit91
xlimit91 / .htaccess
Created April 23, 2019 17:20
.htaccess replace a part of the url - redirect 301 wildcard
# Example:
# OLD URL: http://website.com/xxx/yyy/picture.png
# NEW URL: http://website.com/wp-content/picture.png
# So, I want to replace /xxx/yyy/ with the normal /wp-content/ path of WordPress.
# Put this in your .htaccess file.
RewriteEngine on
RedirectMatch 301 /xxx/yyy/(.*) http://website.com/wp-content/$1