将文件夹移到文档根目录之外
我正在尝试将我的(wordpress)wp-contents 目录移到wordpress 站点根文件夹之外。
WP path: /home/me/domains/my_domain/public_html/
Target wp-contents directory: /home/me/domains/stuff/
我正在尝试 htaccess 但没有成功...
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/wp-content(/*)
RewriteRule ^wp-content/(.*)$ /../../stuff/wp-content/$1 [L]
有什么想法吗?
I'm trying to move my (wordpress) wp-contents directory outside wordpress site root folder.
WP path: /home/me/domains/my_domain/public_html/
Target wp-contents directory: /home/me/domains/stuff/
I'm experimenting with htaccess without success...
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/wp-content(/*)
RewriteRule ^wp-content/(.*)$ /../../stuff/wp-content/$1 [L]
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在
.htaccess
中是不可能的 - 您需要直接在服务器的配置中定义重写条件,以便能够指定 Web 根目录之外的目录。如果您可以创建它们,最简单的解决方法是使用符号链接。如果这样做,您可能需要添加
到 .htaccess 或 Apache 配置中。
This is not possible within
.htaccess
- you'll need to define the Rewrite condition directly in the server's configuration in order to be able to specify directories outside the web root.The easiest workaround, if you can create them, is using a symbolic link instead. If you do, you may need to add
to your .htaccess or Apache configuration.