嗨我有一個Wordpress安裝與靜態主頁和帖子頁名稱的文章。WordPress的靜態主頁動態帖子頁面URL重寫
在WordPress我的自定義固定鏈接字符串設定爲/%postname%
和我的htaccess文件設置如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./index.php [L]
</IfModule>
當我瀏覽到文章頁面,我的URL重寫如下:
example.com/articles/page/5
編輯----- 文章頁面是我用來瀏覽所有文章的文章,其中以前的文章和下一篇文章鏈接。
因此接下來的文章會給我example.com/articles/page/6
和以前的文章就帶我去example.com/articles/page/4
但是我想「頁」部分更改爲文章和「數量」實際顆粒的名字。 編輯------ END
我想獲得的設置如下:
example.com/articles/article/the-article-name
我將如何實現這一目標?
假設你使用的是Apache,mod_rewrite是否打開? – 2010-05-02 18:45:47
@Chrostopher Altman - mod_rewrite必須打開,因爲帖子是/ articles/page/5格式,否則它會是example.com/?page_id = 5 – arnorhs 2010-05-02 19:15:22
假設正確;-) – mahatmanich 2010-05-02 21:02:14