我有一个 HTML 页面。假设网址是
http://localhost/local/local.html
但我想将 URL 屏蔽为
http://localhost/local/abc
我们可以这样做吗?
我有一个 HTML 页面。假设网址是
http://localhost/local/local.html
但我想将 URL 屏蔽为
http://localhost/local/abc
我们可以这样做吗?
.htaccess
在您的域的根目录中创建一个文件,并在该文件中添加以下内容:
RewriteEngine On
RewriteRule ^local.html$ http://localhost/local/abc/ [R=301,L]
在.htaccess
添加行中:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?query=$1 [QSA,L]
当您访问https://localhost/local/abc
时index.php
解析$_GET["query"]
您想要的方式。
您可以使用htaccess
规则实现所需的操作,
在以下位置了解 htaccess:
.htaccess
您可以实施的规则如下:
Options +FollowSymlinks
RewriteEngine on
rewriterule ^local/local.html (.*)$ http://localhost/local/abc$1 [r=301,nc]