.htaccess重写子目录不起作用

时间:2012-08-24 01:49:33

标签: php .htaccess

我想重写我的网址:

http://mysite.com/index.php?node=home&photoID=10

为:

http://mysite.com/home/10

目前,只是

http://mysite.com/home

我用

RewriteRule ^([^/]*)$ index.php/?node=$1 [L]

然而,当我尝试使用

RewriteRule ^([^/]*)/([^/]*)$ index.php/?node=$1&id=$2 [L]

它似乎没有正确加载我的页面,页面没有样式或任何东西。

(另外,我的.htaccess文件的顶部有:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

如果我只是去mysite.com/home它显示404找不到。如果不总是有子页面,我该怎么做?

2 个答案:

答案 0 :(得分:3)

首先要让你的.htaccess规则如下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

## If the request is for a valid directory
RewriteCond %{REQUEST_FILENAME} -d [OR]
## If the request is for a valid file
RewriteCond %{REQUEST_FILENAME} -f [OR]
## If the request is for a valid link
RewriteCond %{REQUEST_FILENAME} -l
## don't do anything
RewriteRule ^ - [L]

RewriteRule ^([^/]+)/([^/]+)/?$ index.php/?node=$1&id=$2 [L,QSA]

RewriteRule ^([^/]+)/?$ index.php/?node=$1 [L,QSA]

然后确保在<head></head>之间的页面顶部添加此行:

<base href="http://mysite.com/">

答案 1 :(得分:0)

您需要添加<base>标记,以便让相对URL知道URI基址的位置。由于您已将URI路径从/home更改为/home/10,因此相对链接的基础将变为/home。您需要将其添加到页面的标题中:

<base href="/">
相关问题