2

我有一个 CMS 可以处理使用 CMS 创建的 SEO 友好 URL。因此,任何作为 like 扩展的index.php东西www.url.com/index.php?id=slug都很好地更改为www.url.com/slug.

但是,我也有一千多个使用未连接到我的 CMS 的 MYSQL 查询字符串创建的页面。所以我有:

www.url.com/item.php?id=001234&pg=author-title

生成页面需要 id 和 pg 中的信息。我想要的是这些页面网址:

www.url.com/item/001234/author-title.html

我查看了许多 mod_rewrite 教程,寻找所有方法来做到这一点,但我似乎无法让它发挥作用。

这是我的 .htaccess(请记住,这里的一些东西是由我的 CMS 使用和生成的:

编辑:好的,根据到目前为止的答案,我已将 .htaccess 更改为以下内容:

# Use PHP5 as default
AddHandler application/x-httpd-php5 .php
AddDefaultCharset UTF-8
# File modified on Dec 5 11:28:31 2011 by server
# For security reasons, mod_php is not used on this server. Use a php.ini file for php directives
# php_value default_charset "UTF-8"

Options -Indexes
Options +FollowSymLinks

# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>
<Files sitemap.xml>
        Order allow,deny
    Allow from all
    Satisfy All
</Files>


RewriteEngine on

# Usually it RewriteBase is just '/', but 
# replace it with your subdirectory path
RewriteBase /

# Usually it RewriteBase is just '/', but 
# replace it with your subdirectory path
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule  ^/?item/([0-9]+)/([a-zA-Z0-9_]+).html$ item.php?id=$1&pg=$2 [QSA,L]

编辑:在使用反馈更改 .htaccess 之后,重写的 URL 仍然没有产生预期的结果。我仍然得到一个404。

4

2 回答 2

1

改变

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L] #passes to CMS
RewriteRule ^/?([a-zA-Z_]+)/([a-zA-Z_]+).html$ item.php?id=$1&pg=$2 [QSA,L] #passes to your stuff

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?item/([a-zA-Z_]+)/([a-zA-Z_]+).html$ item.php?id=$1&pg=$2 [QSA,L]
# conditions need to be repeated
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]

始终将更具体的规则置于更一般的规则之上。

除非您的项目 ID 使用字母,否则请使用:

RewriteRule ^/?item/([0-9]+)/([a-zA-Z_]+).html$ item.php?id=$1&pg=$2 [QSA,L]
于 2012-06-08T17:09:55.493 回答
0

您需要item在开头添加以匹配您提供的示例并对您的角色类进行一些更改。尝试:

RewriteRule ^item/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)\.html$ item.php?id=$1&pg=$2 [QSA,L]

这将匹配表单 item/[string of letters, numbers and underscore]/[string of letters, numbers and underscore].html

如果您的 ID 只是数字,您可以从第一个字符类中删除字母。

于 2012-06-08T17:09:32.837 回答