我想重定向
1)
https://example.com/abc/bluesnrnb-songs-abcd/
https://example.com/abc/bluesnrnb-songs-hgdf/
https://example.com/abc/bluesnrnb-songs-jhgf/
到
https://example.com/abc/blues_n_rnb-songs-abcd/
https://example.com/abc/blues_n_rnb-songs-hgdf/
https://example.com/abc/blues_n_rnb-songs-jhgf/
2)
https://songdew.com/travel/compose-asdf-efgh/222
到
https://example.com/travel/compose_asdf_efgh/222
通过htaccess文件。
你能帮帮我吗?
答案 0 :(得分:0)
我不知道为什么以及你想用这个网址做什么,但也许你可以获得网址的第3部分,然后使用你的编程语言重定向。
喜欢:
RewriteEngine On
RewriteRule ^travel/([^/]*)/?(.*)$ /index.php?action=$1 [L]
如果你使用index.php
这会给你compose-asdf-efgh
然后你就可以做你想做的事情然后重定向。
有些提示:
使用-
比在seo友好网址中使用_
更好,
正如此消息来源所说:http://www.ecreativeim.com/blog/2011/03/seo-basics-hyphen-or-underscore-for-seo-urls/