我如何使用htaccess重写规则来替换地址?

时间:2014-08-02 20:29:50

标签: wordpress .htaccess url mod-rewrite

如何使用htaccess替换地址?使用重写规则......

例如,我想将www.my-site/articles/article1/25/替换为此地址www.my-site/my-articles/article1/

提前谢谢!

1 个答案:

答案 0 :(得分:0)

尝试使用类似的内容......

<IfModule mod_rewrite.c>
RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /"PAGENAME"?article=$1
RewriteCond %{HTTP_HOST} ^www.my-site.com$ [NC]
RewriteRule ^(.*)$ http://my-site.com/$1 [R=301,L]
</IfModule>