我有一个HTML页面。假设URL是
http://localhost/local/local.html
但我想将网址屏蔽为
http://localhost/local/abc
我们可以这样做吗?
答案 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]