.htaccess home configuration 时间:2016-07-03 作者:diegoxfs 如何配置。htaccess:我需要我的主页http://mydomain.cl/c/news/ 但我不能这样做。有人想帮帮我吗?谢谢现在,我的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> 结束WordPress 2 个回复 最合适的回答,由SO网友:sarcastasaur 整理而成 Try this:<IfModule mod_rewrite.c> RewriteCond %{HTTP_HOST} ^www\\.mydomain\\.com [NC] RewriteRule ^(.*)$ http://mydomain/.cl/c/news/.com/$1 [L,R=301] </IfModule> SO网友:Mdkusuma 尝试编辑wp-config.php 并添加此行:define(\'WP_HOME\', \'http://your-domain.com/news\'); 文章导航