A. worldpress插件Permalinks Migration設置問題。
你可以對每一個文件做轉向。在iis裡面對每個www.XXX.com/worldpress 裡面的文件做轉向到www.XXX.com 下的對應的文件上。 一般採用這個方法可以使收錄不失效。
B. 尋求1個支持PostgreSQL的博客平台或者把worldpress修改成支持PostgreSQL。
把worldpress的資料庫資料導出來,通常就是把它到處SQL文件,再通過PostgreSQL導進那SQL文件生成就可以啦!
C. 000web 安裝worldpress的問題
我也在用WP做站
沒出現過大問題啊
感覺WP很強大
你把下載下來的WP文件解壓後
全部上傳就可以了
應該不會有問題啊
可能事上傳 的時候丟失了文件
建議你換一個FTP
再上傳一次
還不能解決問題的話
去WP中文論壇發個求助貼
那裡WP高手雲集
肯定能幫你解決的
希望能幫助你
D. 怎麼安裝worldpress情侶主題
還是沒有裝好,從裝一下。桌面右鍵屬性-主題-主題更改。 主題都存在,C盤windows下 web文件夾 去看看 有沒有 ,有的話直接啟用就好
E. worldpress的PHP模版修改,請幫我看看代碼
應該在這段代碼調用的其他代碼中
F. 000web 安裝worldpress的問題
我也在用WP做站
沒出現過大問題啊
感覺WP很強大
你把下載下來的WP文件解壓後
全部上傳就可以了
應該不會有問題啊
可能事上傳
的時候丟失了文件
建議你換一個FTP
再上傳一次
還不能解決問題的話
去WP中文論壇發個求助貼
那裡WP高手雲集
肯定能幫你解決的
希望能幫助你
G. 在linux伺服器nginx環境下rewrite規則怎麼寫
具體方法如下:
1、在/usr/local/nginx/conf/nginx.conf文件末尾加入虛擬主機配置,實例如下:
server
{
listen80;
server_namehttp://www.hebaodans.com;
indexindex.htmlindex.htmindex.php;
root/wwwroot/www.hebaodans.com;
location~.*.(php|php5)?$
{
#fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
includefcgi.conf;
}
#
includerewrite.conf;
log_formathebaodanscom『$remote_addr–$remote_user[$time_local]「$request」『
『$status$body_bytes_sent「$http_referer」『
『」$http_user_agent」$http_x_forwarded_for』;
access_log/logs/hebaodanscom.loghebaodanscom;
}
2、vi /usr/local/nginx/conf/rewrite.conf 輸入以下規則:
location/{
if(!-e$request_filename)
{
#————START—————WORLDPRESS————
rewrite^/index.phplast;
#————END—————WORLDPRESS————
#————————zen-cartstart——————
#FromUltimateSEOURLs
rewrite"^(.*)-p-(.*).html"/index.php?main_page=proct_info&procts_id=$2&%last;
rewrite"^(.*)-c-(.*).html"/index.php?main_page=index&cPath=$2&%last;
rewrite"^(.*)-m-([0-9]+).html"/index.php?main_page=index&manufacturers_id=$2&%last;
rewrite"^(.*)-pi-([0-9]+).html"/index.php?main_page=popup_image&pID=$2&%last;
rewrite"^(.*)-pr-([0-9]+).html"/index.php?main_page=proct_reviews&procts_id=$2&%last;
rewrite"^(.*)-pri-([0-9]+).html"/index.php?main_page=proct_reviews_info&procts_id=$2&%last;
#ForOpenOperationsInfoManager
rewrite"^(.*)-i-([0-9]+).html"/index.php?main_page=info_manager&pages_id=$2&%last;
#Fordreamscape』sNews&ArticlesManager
rewrite"^news/?"/index.php?main_page=news&%last;
rewrite"^news/rss.xml"/index.php?main_page=news_rss&%last;
rewrite"^news/archive/?"/index.php?main_page=news_archive&%last;
rewrite"^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html"/index.php?main_page=news&date=$1-$2-$3&%last;
rewrite"^news/archive/([0-9]{4})-([0-9]{2}).html"/index.php?main_page=news_archive&date=$1-$2&%last;
rewrite"^news/(.*)-a-([0-9]+)-comments.html"/index.php?main_page=news_comments&article_id=$2&%last;
rewrite"^news/(.*)-a-([0-9]+).html"/index.php?main_page=news_article&article_id=$2&%last;
#Allotherpages
#Don』
#RewriteCond%{REQUEST_FILENAME}!-f[NC]
#RewriteCond%{REQUEST_FILENAME}!-d
rewrite"^(.*).html"/index.php?main_page=$1&%last;
#—————————-zen-cartend—————–
}
}
保存後,運行 kill -HUP `cat /usr/local/nginx/nginx.pid` 平滑重啟即可生效。
H. worldpress 訪問許可權 如何打開
wordPress現在無法下載或者上傳主題或者插件。若提示目錄無法創建,則一般是許可權的問題。解決方法:確保目標文件/文件夾要有755的訪問許可權
這邊看您的問題應該是wordpress的主目錄許可權不夠,建議您手動設置下許可權
chmod -R 777 /data
這里的data是指您的wordpress程序的根目錄,如果您還是無法理解,網路 「小逸博客」 會有對環境更全面的解釋幫助您理解原理
I. 怎麼找到worldpress的php.ini
在www.php.net網站上下載一個windows版本的php壓縮包,比如:php-5.6.23-Win32-VC11-x86.zip,解壓縮,然後找到php.ini-development,修改文件擴展名,得到php.ini,就可以進行參數配置了