我想更改我的网址:
http://my-domain.com/blog/thinking-something-in-hataccess
为:
http://my-domain.com/article/thinking-something-in-hataccess
使用htaccess?
答案 0 :(得分:1)
确保所有链接都已指向http://my-domain.com/article/thinking-something-in-hataccess
,然后您可以将其添加到文档根目录中的htaccess文件中:
RewriteEngine On
RewriteRule ^/?blog/(.*)$ /article/$1 [L]
您可能需要在此处调整正则表达式,以更具体地匹配您需要的内容。例如,将(.*)
替换为([^/]*)
将与something-something
匹配,但不会与something/something
匹配。