Apache配置之URL重写

Posted wyw678

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache配置之URL重写相关的知识,希望对你有一定的参考价值。

wordpress中的永久链接需要Apache支持url重写,于是配置了一下。

1、修改apache的httpd.conf文件,将下面语句前的#去掉

#LoadModule rewrite_module modules/mod_rewrite.so

2、修改apache的httpd.conf文件,将对应的节中的AllowOverride None 改为AllowOverride All,如



<Directory "D:/Local/Apache/htdocs/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>

3、在需url重写的目录下建立.htaccess文件,wordpress在开启永久链接后会只能生成,内容如下:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

以上是关于Apache配置之URL重写的主要内容,如果未能解决你的问题,请参考以下文章

从 Apache 2,2 迁移到 Apache 2.4 后,URL 重写不起作用

如何为 GET 请求正确配置 Apache 重写规则?

Nginx之反向代理日志格式集群缓存压缩URl 重写,读写分离配置

设置ThinkPHP(3.2.1)默认入口文件,及URL重写模式

Apache Nginx URL 地址 重写

在 Apache 2.4 中链接 URL 重写规则