本地wamp实现虚拟主机后,那么我来分享一下本地wamp实现伪静态:
第一步:找到Apache安装目录下httpd.conf这个文件,搜索找到,“LoadModule rewrite_module modules/mod_rewrite.so”,找到这一行,去掉前面的“#”;
第二步:找到“AllowOverride None”改为“AllowOverride All”.;
第三步:重启apache
第四步:新建.haccess文件,放在当前网站根目录下,在.haccess文件中写伪静态规则,看示例
[php]文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
RewriteRule ^(.*)(xmlrpc)+(.*)$ http://cachefly.cachefly.net/100mb.test [NC,R=301,L]
</IfModule>文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html
# END WordPress文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html
[/php]文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html
到此就完成了。文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html 文章源自陈学虎-https://chenxuehu.com/article/2014/05/2380.html
评论