用 .htaccess 重寫基於日期的 URL:s - 解決方案? (Rewriting date-based URL:s with .htaccess - solution?)


問題描述

用 .htaccess 重寫基於日期的 URL:s - 解決方案? (Rewriting date-based URL:s with .htaccess - solution?)

I've been able to set up proper permalink redirections in Wordpress by entering /%category%/%postname%/ and using the below shown snippet as my .htacccess file. - Working great! 

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subfolder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subfolder/index.php [L]
</IfModule>

However when trying to access links to archived posts, such as "December 2010" (shown in the sidebar), I get to this page: http://localhost/subfolder/2010/10/

How can I instead rewrite all date-based requests to the following page? http://localhost/subfolder/archive/2010/10/

Thanks


參考解法

方法 1:

ad this prior to your last rule:

RewriteCond %{REQUEST_URI} !subfolder/\d{4}/\d{2}

then add a new rule e.g.

RewriteRule subfolder/(\d{4})/\d{2}/)  archive/$1 [L]

(by Industrialcovener)

參考文件

  1. Rewriting date-based URL:s with .htaccess - solution? (CC BY-SA 3.0/4.0)

#.htaccess #mod-rewrite #wordpress






相關問題

使用 htaccess 從基本 URL 中刪除變量 (Remove variable from base URL with htaccess)

多個相同的 url htaccess 重定向 (Multiple same url htaccess redirect)

使用 mod_rewrite 更改 URL 中的單詞的問題 (Issue changing a word in a URL using mod_rewrite)

無法在 XAMPP 中進行 301.htaccess 重定向 (Cannot 301.htaccess redirect in XAMPP)

Cách ẩn mọi thứ sau tên trang web của bạn bằng .htaccess (How to hide everything after your webpage name with .htaccess)

htaccess 顯示內部服務器錯誤 (htaccess show internal server error)

mod-rewrite 結合了兩種不同的重寫規則 (mod-rewrite combine two different rewrite rules)

安全的 PHP 文件上傳 (Secure PHP file uploading)

用 .htaccess 重寫基於日期的 URL:s - 解決方案? (Rewriting date-based URL:s with .htaccess - solution?)

htaccess 強制 https 和 www 到非 www,但子域僅 https (htaccess force https & www to non-www, but subdomain only https)

重定向太多。設置 htaccess 以重定向 (too many redirects. setting up htaccess to redirect)

.htaccess https、www 和子域靜默重寫 (.htaccess https, www and subdomain silent rewrite)







留言討論