php - htaccess URL redirection -
how can redirect urls different format.
http://mysite.com/mydir1/mydir2/my-article-first-86974.html http://mysite.com/mydir1/somefolder/my-article-76674.html http://mysite.com/mydir1/anotherfolder/some-text-35667.html http://mysite.com/mydir1/mydir6/my-article-another-75445.html i want redirect above urls below format.
http://mysite.com/mydir2/my-article-first-1-86974.html http://mysite.com/somefolder/my-article-1-76674.html http://mysite.com/anotherfolder/some-text-1-35667.html http://mysite.com/mydir6/my-article-another-1-75445.html thanks in advance.
enable mod_rewrite , .htaccess through httpd.conf , put code in .htaccess under document_root directory:
options +followsymlinks -multiviews # turn mod_rewrite on rewriteengine on rewriterule ^mydir1/([^/]+)/(.+?)-(\d+\.html)$ /$1/$2-1-$3 [l,r=301,nc]
Comments
Post a Comment