在localhost windows xampp上配置mod_rewrite

时间:2014-12-01 19:40:22

标签: apache .htaccess mod-rewrite xampp

我试图让mod_rewrite在localhost上工作。如果我去localhost /网站,它会加载

DirectoryIndex home.php

localhost/website/home 

也有效

但是对于每个其他页面,它只显示主页。

RewriteEngine On
RewriteBase /
RewriteRule    ^home/?$    home.php    [NC,L]
RewriteRule    ^about/?$    about.php    [NC,L]  <--- this goes to home

http.cfg:

<VirtualHost *:80>

ServerName localhost

DocumentRoot "C:/xampp/htdocs/website"

<Directory "C:/xampp/htdocs/website">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

0 个答案:

没有答案
相关问题