0

我怎样才能使用这个结构。这是我的意思的一个例子:例子

它的末尾没有 .html 或 .php 或“/”。

我一直在使用这种结构:http ://s0ulp1xel.x10.mx/?p=home

URL 类型叫什么?

4

2 回答 2

0

URL 不一定引用特定文件。例如,在 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

会重写一个 URL,http://example.com/page/5比如http://example.com/page.php?id=5.

在这种特殊情况下,您可以使用目录结构/us/index.php

于 2012-09-29T15:02:21.010 回答