在HTML中屏蔽URL

时间:2016-08-02 11:07:45

标签: url-masking

我有一个HTML页面。假设URL是

http://localhost/local/local.html 

但我想将网址屏蔽为

http://localhost/local/abc
我们可以这样做吗?

3 个答案:

答案 0 :(得分:1)

在您域的根目录中创建一个.htaccess文件,并在该文件中添加以下内容:

RewriteEngine On
RewriteRule ^local.html$ http://localhost/local/abc/ [R=301,L]

答案 1 :(得分:0)

.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"]访问IllegalArgumentException时,如果您愿意。

答案 2 :(得分:0)

您可以使用htaccess规则

来实现所需的操作

了解htaccess:

<强> What is .htaccess file?

您可以实施的

.htaccess规则如下:

Options +FollowSymlinks
RewriteEngine on
rewriterule ^local/local.html (.*)$ http://localhost/local/abc$1 [r=301,nc]