我在example.com
这样的地址上有一个Wordpress网站,有一些网页,例如example.com/shop
,example.com/products/sample-product
,我想通过myshopdotcom.example
查看,{分别为{1}}。
我知道写一个简单的301重定向会完成这项工作,但我不想为myshopdotcom.example/products/sample-product
创建一个新的Wordpress网站,而是想简单地将特定页面从myshopdotcom.example
映射到{{1 }}
是否可以通过在example.com
内写一些内容?
答案 0 :(得分:0)
在VirtualHost中你可以使用Alias模块:
<ifModule alias_module>
Alias "/phpmyadmin" "D:\WebServers\running\phpMyAdmin-4.6.6-english"
Alias "/mpage1" "F:\folder\for\the\page"
Alias "/mpage2" "/folder2/page2.html" #in linux
</ifModule>
有时您应该通过
授予对该文件的访问权限<Directory "D:\WebServers\running\phpMyAdmin-4.6.6-english">
Require all granted
</Directory>