評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
前言:最近在幫客戶架設 wordpress 架好後發文也正常,但點進去卻找不到該文章後台是有此文章權限也設公開;後來才發現原來是 url Rewrite 沒有開啟。
要啟用 url Rewrite 有兩個地方要改:
1.啟用 Rewrite
指令:sudo a2enmod rewrite
顯示
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2
2.修改 apache 設定檔
指令: nano /etc/apache2/apache2.conf
在設定檔中找到
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
改成
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
最後再重新啟動apache2
指令:service apache2 restart
再重新整理網頁,點擊文章就可以正常顯示內文了。
評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]