Apache htaccess 重写URL
使用 Apache htaccess 文件可以方便地对网站的 URL 进行重写,以实现更友好的 URL。具体操作步骤如下:
RewriteEngine On
RewriteRule ^article/(\d+)$ article.php?id=$1
其中,RewriteEngine On 表示开启重写引擎,RewriteRule 表示重写规则。按照上述方法定义重写规则即可实现网站 URL 的重写。
上一篇:ApacheHtaccessRewriteRule产生的409错误。
下一篇:ApacheHttpAsyncClient回调中无法发起第二个请求