如何使用htaccess替换地址?使用重写规则......
例如,我想将www.my-site/articles/article1/25/
替换为此地址www.my-site/my-articles/article1/
提前谢谢!
答案 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>