পরিবর্তে ভার্চুয়াল হোস্ট ব্যবহার করে পুনর্নির্দেশ করার পরিবর্তে মোড_উইরাইট ব্যবহারের প্রস্তাব দেওয়া উপায় নয়।
সেক্ষেত্রে আপনি যদি মোড_আররাইট ব্যবহার করতে ঝোঁক হন:
RewriteEngine On
# This will enable the Rewrite capabilities
RewriteCond %{HTTPS} !=on
# This checks to make sure the connection is not already HTTPS
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
# This rule will redirect users from their original location, to the same
location but using HTTPS.
# i.e. http://www.example.com/foo/ to https://www.example.com/foo/
# The leading slash is made optional so that this will work either in
# httpd.conf or .htaccess context
রেফারেন্স: এইচটিপিডি উইকি - পুনর্লিখন এইচটিটিপিটিওএইচটিটিপিএস
আপনি যদি 301 স্থায়ী পুনর্নির্দেশের সন্ধান করছেন, তবে পুনঃনির্দেশিত পতাকাটি অবশ্যই হবে,
R=301
সুতরাং পুনর্লিখনের নিয়মটি এর মতো হবে,
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]