0

我正在将我的网站链接更改为对 SEO 友好的 url,我在 php 文件中做了所有事情,并将 url 更改如下:

http://mywebsiet.com/news-details.php?id=2012/6/21/newstitle.html

我如何重定向到:

http://mywebsiet.com/2012/6/21/newstitle.html

我从 www.generateit.net/mod-rewrite/ 尝试了这个生成工具

并使用提供的代码创建了 .htaccess:

RewriteEngine On
RewriteRule ^([^_]*)$ /news-details.php?id=$1 [L]

即便如此,什么都没有改变....有什么想法吗?

4

1 回答 1

0

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

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

RewriteRule ^(.+?\.html)$ /news-details.php?id=$1 [L,QSA,NC]
于 2013-06-21T18:41:21.577 回答