.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\');

相关推荐

Redirect htaccess

我需要帮助重定向我的页面。例如,我有网站https://example.com. 我需要将内容从https://example.com 到https://example.com/blog. 这不是问题,我通过更改主页URL来做到这一点。这很有效。但现在我需要添加来自旧的重定向https://example.com 到https://xmpl.com.我想用。htaccess,但这不起作用。你们能帮帮我吗?以下是我对此的一些尝试,但两者都不起作用。RewriteEngine On RewriteRu