在我被 RTM 轰炸之前,我用谷歌搜索过这个,但我得到的只是关于如何安装主题的教程。
我必须更改朋友网站的链接。通常我只会 ssh 进入服务器发出命令vim index.html
并将其更改<a href='this.html'>This<\a>
为
<a href='that.html'>That<\a>
,但 wordpress 真的是我的头脑。更改index.html
文件中的链接没有影响,而且我可以说有一些差异让我相信它根本没有被使用
所以我首先看的是.htaccess
文件:
DirectoryIndex index.php index.html
# 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>
# END WordPress
接下来我查看了index.php
文件:
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
所以接下来我去了wp-blog-header.php
然后wp-config.php
我就放弃了。
我想知道的是 wordpress 模板到底是做什么的。他们是否只是设置了一些 CSS 代码并使其更容易链接到博客和 Facebook?我正在寻找的是 wordpress Dashboard 中类似于以下内容的内容:
Main Page = index.html
但这样的事不存在。在pages
选项卡下有一个“主页”页面,这绝对是我输入的“主页”,但是当我单击“查看页面源代码”时,Wordpress 中显示的 html 代码与 HTML 代码不匹配。那么这个新代码究竟是在哪里生成的呢?我需要以某种方式拦截它并更改链接。