生成 SE 友好 URL .htaccess mod 重写

发布于 2024-12-16 02:37:03 字数 464 浏览 0 评论 0原文

我有一个通过 get 方法获取文件名并将其显示在页面上的 URL。

tvchaska.info/i/ 

这是这个页面,当你点击任何图像时,它会说

http://tvchaska.info/i/output.php?i=http://brothertattoo.co.uk/wp-content/uploads/2011/09/Sexy-Girl-Tattoo.jpg 

我希望我的这个 URL 被重写为 tvchaska.info/i/Sexy-Girl-Tattoo.html

我尝试遵循规则,但它不起作用

    RewriteEngine On
    RewriteRule ^([^/]*)\.html$ /output.php?i=$1 [L]

任何人都可以吗?帮我实现这个目标吗?

I've a URL which get file name through get method and display it on the page.

tvchaska.info/i/ 

this is the page and when u click any image it will go to say

http://tvchaska.info/i/output.php?i=http://brothertattoo.co.uk/wp-content/uploads/2011/09/Sexy-Girl-Tattoo.jpg 

I want my this URL to be rewritten as tvchaska.info/i/Sexy-Girl-Tattoo.html

I tried following rule but it is not working

    RewriteEngine On
    RewriteRule ^([^/]*)\.html$ /output.php?i=$1 [L]

Can any one plz help me to attain this plz?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染柒℉ 2024-12-23 02:37:03

我看过你的页面,只有当我能在现实生活中见到你页面上的 3 个女孩时,我才会给你答案!只是在开玩笑。

这是解决方案:

-1:所有链接不必像:

/i/output.php?i=http://1.bp.blogspot.com/_R2Wo1mDtuko/TGzOFQEhpoI/AAAAAAACAA/Na- WQ1xe7dY/s1600/sexy.jpg

但类似:

/i/1.bp.blogspot.com/_R2Wo1mDtuko/TGzOFQEhpoI/AAAAAAAACAA/Na-WQ1xe7dY/s1600/sexy.jpg

-2:修改网站后,应用这些规则:

RewriteEngine On
RewriteRule ^/i/(.*)+ /i/output.php?i=http://$1

这将做这份工作。

奥利维尔

I've seen you page, I'll give you the answer only if I can meet 3 girls of your page IRL! Just kidding.

Here's the solution:

-1: all your link don't have to be like:

/i/output.php?i=http://1.bp.blogspot.com/_R2Wo1mDtuko/TGzOFQEhpoI/AAAAAAAACAA/Na-WQ1xe7dY/s1600/sexy.jpg

but something like:

/i/1.bp.blogspot.com/_R2Wo1mDtuko/TGzOFQEhpoI/AAAAAAAACAA/Na-WQ1xe7dY/s1600/sexy.jpg

-2: once you've modified your site, apply those rules:

RewriteEngine On
RewriteRule ^/i/(.*)+ /i/output.php?i=http://$1

This will do the job.

Olivier

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文