私たちと一緒にウェブサイトを持っているクライアントのために仮想サブドメインを作成したいのですが、たとえば、ウェブサイトは実際には単一のURLから提供されます。
顧客がウェブサイトrobshop.mywebsite.comをリクエストしたため、その場で作成しましたが、コンテンツは実際にはmywebsite.com/websites/index.php?website=robshopから提供されます。
どうすればこれを行うことができますか?
また、私のセットアップはPHPとcPanel/WHMサーバーを使用しています。
これが私がこれまでに試したhtaccessコードです。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^robshop.instamob.co.uk
RewriteCond %{REQUEST_URI} !instamob.co.uk/websites/index.php?website=robshop
RewriteRule ^(.*)$ instamob.co.uk/websites/index.php?website=robshop$1 [L]