Remove subfolder name from WordPress site using htaccess(使用 htaccess 从 WordPress 站点中删除子文件夹名称)
问题描述
我已将 WordPress 移动到名为 /site 的子文件夹中,但 URL 现在显示为 http://www.example.com/site.我希望它在没有 /site/ 子目录的情况下显示.
I've moved WordPress into sub-folder named /site but the URL now shows http://www.example.com/site. I want it to show without the /site/ subdirectory.
这是我当前的 .htaccess 代码
RewriteEngine On
RewriteBase /site/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site/index.php [L]
如何从可见 URL 中删除物理子目录?
How do I remove the physical subdirectory from the visible URL?
推荐答案
我建议您不要弄乱 .htaccess 文件的内容.恢复您对此文件所做的更改并按照简单的步骤进行操作.
I advice you against messing up the contents of the .htaccess file. Revert the changes that you've made to this file and follow the simple procedue.
- 登录管理仪表板.
- 转到设置">常规"
- 在 WordPress 地址 (URL) 字段中输入
http://www.example.com/site - 在站点地址 (URL) 字段中输入
http://www.example.com
保存更改,您应该就可以开始了.
Save the changes and you should be good to go.
这篇关于使用 htaccess 从 WordPress 站点中删除子文件夹名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 htaccess 从 WordPress 站点中删除子文件夹名称
基础教程推荐
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何替换eregi() 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
