-8

我想在每个页面上像这样http://www.damnlol.com/the-new-instgram-facebook-filters-18142.html

现在使用 PHP 我已经上传了图像,但显示为 http://mysite.com/veiw_image?img=the-new-instgram-facebook-filtershttp://mysite.com/veiw_image?img=10http:// mysite.com/?img=154858

但我想用.html ext plz帮助唯一的url!

4

2 回答 2

2

如果您使用 Apache,请进行一些 URL 重写:Apache2 URL 重写指南

于 2013-06-20T10:49:05.560 回答
0

如前所述,您必须mod_rewrite在服务器上启用,然后添加一个.htaccess文件。

RewriteEngine On
RewriteRule ^view_image/([^/]*)\.html$ /view_image?img=$1 [L]

这使您可以访问http://mysite.com/view_image/10.html ,但也适用于您的其他示例。


对于任何搜索的人,我认为您最初的意思是:

RewriteEngine on
RewriteRule ^(.+)\.jpeg$ $1.html

这会改变扩展名

于 2013-06-20T10:55:06.487 回答