标签:自定义 lan htaccess admin access image rewrite and lock
后台管理网址是这个固定不变的
http://xxx/wordpress/wp-admin/
vi index.php
找到这一部分
/** Loads the WordPress Environment and Template */
require( dirname( FILE ) . ‘/wp-blog-header.php‘ );
修改为如下即可
/** Loads the WordPress Environment and Template */
require( dirname( FILE ) . ‘/wordpress/wp-blog-header.php‘ );
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
然后上传到根目录,修改名字即可
这样就可以通过自定义域名访问了
让您的站点主页与WordPress安装目录不同设置相关及.htaccess文件创建
标签:自定义 lan htaccess admin access image rewrite and lock
原文地址:https://www.cnblogs.com/my466879168/p/12241800.html