php - 301 redirect dynamic urls -


नमस्ते आप कैसे 301 पुनर्निर्देशित करते हैं http: // www.site.com/blog/index.php?id=uu5 से Http: // www.newsite.com/ in .htaccess?

धन्यवाद!

< P> डोमेन का स्थायी पुनर्निर्देशन करने के लिए आप इसका उपयोग कर सकते हैं

  RewriteEngine On RewriteCond% {HTTP_HOST} ^ www.site.com [एनसी] RewriteRule ^ (। *) $ Http: // Www.newsite.com/$1 [r = 301, nc]  

Comments