你好,我想改變與重寫規則的URL,這樣重寫規則更改URL
http://www.myweb.com/camisetas/something.html
到
http://www.myweb.com/catalogo/something.html
something.html是可變的。
感謝
你好,我想改變與重寫規則的URL,這樣重寫規則更改URL
http://www.myweb.com/camisetas/something.html
到
http://www.myweb.com/catalogo/something.html
something.html是可變的。
感謝
您可以使用此規則:
RewriteEngine On
RewriteRule ^camisetas/(.+)$ /catalogo/$1 [L,NC,R=301]
嘗試在你的.htaccess文件放上:
RewriteEngine ON
RewriteRule ^/camisetas/(.*)$ http://www.myweb.com/catalogo/$1 [R=301,L]
它工作正常非常感謝,我刪除/從camisetas – user1524138