我安装了wordpress用于测试目的。我想创建一个重写的新规则。我把它作为.htaccess文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我想要做的是,我想为我的-let说一个a.jpg文件。我希望我的a.jpg文件可以作为
访问http://example.com/a.jpg
为了实现这一目标,我该怎么做?
提前致谢。