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.
我想要我的网址:
www.example.org/I/file.php
I是一个假文件夹,就像
I
www.example.org/k/file.php
k是真正的文件夹。
k
例如,我想如果用户键入anyfolder代替K网站为他工作,另一件事是当有人键入假文件夹时我不希望他被重定向到真实文件夹k。
anyfolder
K
我想要有人指导我,我会自己做每一件事。
顺便说一句,这适用于.htaccessPHP 还是什么?
.htaccess
尝试将此添加到文档根目录中的 htaccess 文件中:
Options -Multiviews RewriteEngine ON RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^[^/]+/([^/]+)\.php$ /k/$1.php [L]
文本周围的标签?