如何阻止在URL末尾显示正斜杠

时间:2017-06-21 04:59:49

标签: url

我正在运行Apache 2.4网络服务器。

我有一个文件:http://192.168.0.12/test/index.html

现在,如果我访问此文件,它会在地址栏中显示:

http://192.168.0.12/test/

我想要的只是显示它:

http://192.168.0.12/test

编辑我决定解决这个问题,而不是将/ test /目录中的所有内容存储在/ test-content /目录中,并更改/test/index.html文件只是/test.html

1 个答案:

答案 0 :(得分:0)

编辑.htaccess文件并添加以下规则:

RewriteEngine On
RewriteRule ^test$ /test1/ [L]