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 请求,例如:
http://sample.org/www/images/animal.png
文件结构:
根路径/图像/animal.png
根路径/www/
尝试将其放入文档根目录的 htaccess 文件中:
RewriteEngine On RewriteCond %{REQUEST_URI} ^/www/(.*)$ RewriteCond %{DOCUMENT_ROOT}/%1 -f RewriteRule ^/?www/(.*)$ /$1 [L]