我正在尝试将 url 重写为我的 wordpress 主题文件夹,如下所示:
实际网址:http://www.mydomain.com/wp-content/themes/mytheme/style.css
试图重写为:http://www.mydomain.com/mytheme/style.css
这是我的 .htaccess 文件中的内容,该文件位于我的主文件夹中,但无法正常工作:
RewriteEngine On
RewriteRule ^mytheme/(.*) /wp-content/themes/mytheme/$1 [QSA,L]
我究竟做错了什么?