4

我有一个 php 页面:

www.mydomain.com/subfolder/subfolder/thepage.php

我想通过以下方式访问它:

www.mydomain.com/page

使用 .htaccess 文件怎么可能?!
我想使用别名或虚拟名称来替换长目录 url。

4

2 回答 2

5
RewriteEngine On
RewriteBase /
RewriteRule ^page$ /subfolder/subfolder/thepage.php [L]
于 2012-12-16T11:21:07.593 回答
0

你也可以这样做:

Redirect 302 /page /subfolder/subfolder/thepage.php
于 2018-11-07T14:23:28.473 回答