0
我有一個網站,我使用永久鏈接像/%category%/%postname%/。WordPress的帖子/頁面重定向時使用永久鏈接,而不是當使用默認設置
他們在一週或兩週前工作得很好。現在,當我想進入一個頁面時,出現一個錯誤,告訴我該頁面沒有正確重定向。
我沒有在我的htaccess文件中進行重定向。沒有。 如果我將永久鏈接更改爲默認,那麼每個網頁/帖子都可以正常工作。
我不知道該怎麼做。請幫助
這裏是的.htaccess
<ifModule mod_headers.c>
ExpiresActive On
# Expires after 1 month
<filesMatch ".(gif|png|jpg|jpeg|ico|pdf|js|htm|html|txt)$">
Header set Cache-Control "max-age=2592000"
</filesMatch>
# Expires after 1 day
<filesMatch ".(css)$">
Header set Cache-Control "max-age=2592000"
</filesMatch>
</ifModule>
# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
# END W3TC Browser Cache
# 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
請修改您的問題,並將您現在擁有的所有內容放在.htaccess中 – Pikk
我用htaccess代碼更新了問題 –
您收到的錯誤消息是什麼?錯誤頁面?空白頁?如果您暫時禁用W3TC,永久鏈接是否可以工作? – Pikk