htaccess 文件扩展名重写

发布于 2024-12-09 04:30:15 字数 993 浏览 0 评论 0原文

的示例

任何人都有如何编写 url 文件扩展名特定重写 ... http://www.site.com/members.htmlhttp://www.site.com/main

然后删除所有以 .html 结尾的文件的所有扩展名 http://www.site.com/.html 到 http://www.site.com/*

这也需要在有或没有 www 的情况下工作

<IfModule mod_rewrite.c>
RewriteEngine On        
RewriteCond %{HTTP_HOST} ^(ssss\.com)$ [NC] 
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$ 
RewriteCond %{HTTP_HOST} !^(www\.)?ssss\.com$ [NC] 
RewriteCond %{HTTP_HOST} ^(www\.)?([^\.]+)\.ssss\.com$ [NC] 
RewriteRule ^(.*)$ http://www.ssss.com/view/%2.html [R=301,L]
RewriteCond %{REQUEST_URI} !^files/
RewriteCond %{REQUEST_FILENAME}  !-d
RewriteCond %{REQUEST_FILENAME}  !-f
RewriteRule ^(.*) index.php [L]
</IfModule>

anyone have an example of how to write url file extension

specific rewrite...
http://www.site.com/members.html to http://www.site.com/main

and then remove all extension for all files ending in .html
http://www.site.com/
.html to http://www.site.com/*

also this needs to work with and without www

<IfModule mod_rewrite.c>
RewriteEngine On        
RewriteCond %{HTTP_HOST} ^(ssss\.com)$ [NC] 
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$ 
RewriteCond %{HTTP_HOST} !^(www\.)?ssss\.com$ [NC] 
RewriteCond %{HTTP_HOST} ^(www\.)?([^\.]+)\.ssss\.com$ [NC] 
RewriteRule ^(.*)$ http://www.ssss.com/view/%2.html [R=301,L]
RewriteCond %{REQUEST_URI} !^files/
RewriteCond %{REQUEST_FILENAME}  !-d
RewriteCond %{REQUEST_FILENAME}  !-f
RewriteRule ^(.*) index.php [L]
</IfModule>

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

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

发布评论

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

评论(1

濫情▎り 2024-12-16 04:30:15

一般经验法则是:首先放置更具体的规则。

假设您希望 site.com 重定向到 www.site.com:

RewriteRule ^members.html$ http://www.site.com/main [R=301,L]

RewriteRule ^(.*)\.html$ http://www.site.com/$1 [R=301,L]

RewriteCond %{HTTP_HOST} !^www\.site\.com$
RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L]

The general rule of thumb is: put more specific rules first.

Assuming you want site.com to redirect to www.site.com:

RewriteRule ^members.html$ http://www.site.com/main [R=301,L]

RewriteRule ^(.*)\.html$ http://www.site.com/$1 [R=301,L]

RewriteCond %{HTTP_HOST} !^www\.site\.com$
RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文