简体   繁体   English

.htaccess mod_rewrite无法用于友好网址

[英].htaccess mod_rewrite not working for friendly URL's

I have done several searches and followed tutorials, but I can't seem to get the following to work. 我已经进行了几次搜索并遵循了教程,但似乎无法使以下内容起作用。 I would like to create SEO friendly URL's using .htaccess mod_rewrite. 我想使用.htaccess mod_rewrite创建SEO友好的URL。 My example will be for displaying a news story. 我的示例将用于显示新闻故事。 The current url structure is this: 当前的url结构是这样的:

http://www.website.com/news/details/?newsID=40 http://www.website.com/news/details/?newsID=40

What I would like to change it to would be this: 我想将其更改为:

http://www.website.com/news/name-of-news-article/ http://www.website.com/news/name-of-news-article/

Here is what I currently have for my .htaccess file for the rewrite: 这是我目前为.htaccess文件准备的内容:

RewriteEngine on
RewriteRule ^news/([^/]+)/?$ /news/details/?newsID=$1 [L]

With just this in the .htaccess file, nothing happens on the URL, it just stays how it is originally. 只需在.htaccess文件中执行此操作,URL上就什么也不会发生,它仍然保持原始状态。 I know the site can read the .htaccess file. 我知道该站点可以读取.htaccess文件。

I'm guessing to get the actual article name in there, I'd have to pass a parameter containing the name, but even in the current example, nothing is happening. 我想在那里获得实际的文章名称,我必须传递一个包含名称的参数,但是即使在当前示例中,也没有任何反应。 Any assistance would be appreciated! 任何援助将不胜感激! Thank you. 谢谢。

Remove leading slash from matching pattern. 从匹配模式中删除前导斜杠。

RewriteEngine on

RewriteCond %{REQUEST_URI} !^/news/details/ [NC]
RewriteRule ^news/([^/]+)/?$ /news/details/?newsID=$1 [L]

Reason: Inside .htaccess leading slash in a URI is not matched. 原因: URI中的.htaccess内部的斜杠不匹配。

Read more about it: Apache mod_rewrite Introduction 了解更多信息: Apache mod_rewrite简介

PS: Though keep in mind that rewritten URI will be /news/details/?newsID=name-of-news-article PS:尽管请记住,重写的URI将是/news/details/?newsID=name-of-news-article

EDIT 编辑

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+test\.htm[?\s?] [NC]
RewriteRule ^ /hello? [R=302,L]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM