重定向/ directsystems /教育/索引/名/ system_one
TO
http://www.mysite.com/directsystems/education/index/name/system-one
能否請你給我301重定向規則爲htaccess?因爲我想用hypens重定向undescores
重定向/ directsystems /教育/索引/名/ system_one
TO
http://www.mysite.com/directsystems/education/index/name/system-one
能否請你給我301重定向規則爲htaccess?因爲我想用hypens重定向undescores
試試這個:
RewriteRule ^([^_]*)_([^_]*)$ $1-$2
更換所有的URI連字符-
強調_
,使用下面的.htaccess文件規定:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^([^\_]+)_([^\_]+)(_.*)$ /$1-$2$3 [N,DPI]
RewriteRule ^([^\_]+)_(.*)$ /$1-$2 [L,R=301,DPI]
這重定向的網址爲:
http://localhost/directsystems/education/index/my_name/system_one
到
http://localhost//directsystems/education/index/my-name/system-one
看起來像某種錯誤/蛙表情的。大聲笑 – Wiseguy 2011-04-29 12:03:41