Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 url 隐藏一个文件夹。
一个例子:
如果我输入 www.mysite.com/jango.php 我需要你阅读目录:www.mysite.com/users/jango.php 但不想看到 /users 我只想在地址栏中看到这个: www.mysite.com/jango.php
你应该使用 mod_rewrite
对你来说,示例规则将
RewriteRule ^jango\.php$ /users/jango.php
在你的.htaccess:
.htaccess
RewriteEngine On RewriteRule ^/users/([^/]*)$ /$1 [L]