答案 0 :(得分:1)
您正在寻找网址别名:
Apache - Mapping url to local path for static content
答案 1 :(得分:0)
网址不一定是指特定文件。例如,在Node.js中,您可以创建响应任何页面的服务器:
http.createServer(function(request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('You’ve reached the Node.js server!');
}).listen(80, '0.0.0.0');
...但是在使用Apache的PHP中,你可能正在寻找别名和/或重写!例如:
RewriteEngine On
RewriteRule ^page/(\d+)$ page.php?id=$1
会将http://example.com/page/5
等网址重写为http://example.com/page.php?id=5
。
在这种特殊情况下,您可以使用目录结构/us/index.php