我有一个Joomla网站example.com
和一个子目录support.example.com
。
我想为客户提供一个唯一的网址,以便查看support.example.com/customer1
和support.example.com/customer2
等内容。
我想要的是,无论我拥有多少客户网址,它都会自动指向support.example.com
,这会提示用户输入用户名和密码。我知道我可以在每个目录中进行重定向,但我并不想为每个客户设置一个物理目录,它更像是一个别名。另请注意,我有1and1 UK托管,我不认为我可以更改httpd.conf
文件。
答案 0 :(得分:0)
您可以使用网址重写来完成此操作。它可以翻译
support.yourdomain.com/customer1/somefile.html
support.yourdomain.com/customer2/somefile.html
到
support.yourdomain.com/help/somefile.html
更好的是,它可以做到这样的事情:
support.yourdomain.com/customer1/somefile.html
support.yourdomain.com/customer2/somefile.html
到
support.yourdomain.com/help/findhelp.php?customer=customer1&file=somefile.html
support.yourdomain.com/help/findhelp.php?customer=customer2&file=somefile.html