如何创建一个没有ID的漂亮的帖子链接

M. *_*ili 2 php .htaccess mod-rewrite

我有这样的链接:

 http://localhost/mywebsite/post.php?title=my-post-title&id=2
Run Code Online (Sandbox Code Playgroud)

要么

 http://localhost/mywebsite/post/my-post-title/2/  
Run Code Online (Sandbox Code Playgroud)

(使用mvc)

但我需要显示没有ID的链接,就像互联网上的许多网站一样.

例如:

 localhost/mywebsite/post/my-post-title/
Run Code Online (Sandbox Code Playgroud)

And*_*L64 5

您需要使用它mod_rewrite来美化您的URL.查看此链接:http://www.sitepoint.com/guide-url-rewriting/

以下是mod_rewrite上面的示例:

RewriteEngine on

RewriteRule ^mywebsite/(.*)/(.*)$ mywebsite/post/?title=$2 [QSA]
Run Code Online (Sandbox Code Playgroud)

Via - 如何美化URL?