目录 一、问题说明 二、解决方式 1、Apache 2、Nginx 3、IIS 4、Lighttpd 一、问题说明 解决各种环境下,页面存在但出现404错误。在Apache,Wordpress在安装过程中自动生成伪静态的代码,所以Ap
目录
解决各种环境下,页面存在但出现404错误。在Apache,Wordpress在安装过程中自动生成伪静态的代码,所以Apache上面可以不用配置。如果只是直接复制代码进apache上面则需要配置
如果是使用rewrite组件的就在对应文件设置,否则在应用服务器的配置文件添加
1,确认空间支持rewrite组件。
2,按照 伪静态rewrite 目录下的说明文档操作。
3,后台设置浏览模式为 rewrite伪静态 。
在项目根目录的【.htaccess】文件(如果没有则新建文件),添加如下代码
# BEGIN WordPress# 在“BEGIN WordPress”与“END WordPress”之间的指令(行)是# 动态生成的,只应被WordPress过滤器修改。# 任何对标记之间的指令的修改都会被覆盖。RewriteEngine OnRewriteRule .* - [E=Http_AUTHORIZATioN:%{HTTP:Authorization}]RewriteBase /RewriteRule ^index\.PHP$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L] # END WordPress
注意:如果在项目跟目录的文件配置的话
1.有虚拟主机的话:需要配置vhosts.conf,在里面配置include到对应文件。
2.没有虚拟主机的话:直接在应用服务器的conf配置,在里面include到对应文件。
# 以nginx配置为例server { # ///其他配置 location / { # ///其他配置 include xxx/xxx.htaccess; }}
在项目根目录中的【nginx.htaccess】文件(如果没有则新建文件),添加如下代码
location /{ try_files $uri $uri/ /index.php?$args;} rewrite /wp-admin$ $scheme://$host$uri/ permanent;
或者下面这个
if (-f $request_filename/index.html){rewrite (.*) $1/index.html break;}if (-f $request_filename/index.php){rewrite (.*) $1/index.php;}if (!-f $request_filename){rewrite (.*) /index.php;}
在项目根目录中的【httpd.ini】或【WEB.config】文件(如果没有则新建文件),添加如下代码
iis6.x 下使用 httpd.ini
[ISapi_Rewrite]# Defend your computer from some wORM attacks#RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files# from accessing through HTTP# Rules to ensure that normal content gets throughRewriteRule /tag/(.*) /index\.php\?tag=$1RewriteRule /software-files/(.*) /software-files/$1 [L]RewriteRule /images/(.*) /images/$1 [L]RewriteRule /sitemap.xml /sitemap.xml [L]RewriteRule /favicon.ico /favicon.ico [L]# For file-based wordpress content (i.e. theme), admin, etc.RewriteRule /wp-(.*) /wp-$1 [L]# For normal wordpress content, via index.phpRewriteRule ^/$ /index.php [L]RewriteRule /(.*) /index.php/$1 [L]
iis7.x 下使用web.config
lighttpd是不支持.htaccess的,所以只能在配置文件【lighttpd.conf】中修改
添加如下代码
url.rewrite = ("^/(wp-.+).*/?" => "$0","^/(sitemap.xml)" => "$0","^/(xmlrpc.php)" => "$0","^/(.+)/?$" => "/index.php/$1")
来源地址:https://blog.csdn.net/ET1131429439/article/details/126680634
--结束END--
本文标题: 【wordpress】Wordpress在Apache/Nginx/IIS/Lighttpd环境下的伪静态配置
本文链接: https://lsjlt.com/news/386190.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-27
2023-10-27
2023-10-26
2023-10-25
2023-10-21
2023-10-21
2023-10-18
2023-10-12
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0