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,就可以进行参数配置了