生成 SE 友好 URL .htaccess mod 重写
我有一个通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看过你的页面,只有当我能在现实生活中见到你页面上的 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:修改网站后,应用这些规则:
这将做这份工作。
奥利维尔
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:
This will do the job.
Olivier