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.
我希望你能帮忙。我正在尝试进行 htaccess 重写更改
文件.gif 到图像/文件.gif
我翻遍了这个网站,但找不到。任何帮助将非常感激。
谢谢马克
通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccess的DOCUMENT_ROOT目录下:
httpd.conf
.htaccess
DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule (?!^images/)^([^.]+\.gif)$ /images/$1 [L,NC]