域、子域和文件

域、子域和文件

现在我有了域名和子域名。我希望子域名显示来自域名文件的文件。例如 dom.example.com -> 必须显示来自 example.com/subdomain.php 的文件

如何用 htaccsess 实现,谢谢

答案1

您必须在 httpd.conf 中放入类似这样的内容。您无法在 .htaccess 中执行此操作。

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "/Applications/XAMPP/xamppfiles/docs/dummy-host.example.com"
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error_log"
    CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>

相关内容