htaccess 漂亮的网址设置

编程入门 行业动态 更新时间:2024-10-20 07:49:52
本文介绍了htaccess 漂亮的网址设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我第一次使用 htaccess 为我的网站 html 文件和 1 个 php 文件制作漂亮的 url.我只是想知道我是否能够得到一些关于我的 htaccess 文件设置的建议,以及我如何设置它是否是一个好方法?由于我所写的内容,我讨厌我的网址在某些情况下不起作用.:(

I'm using htaccess for the first time to make pretty urls for my website html files and 1 php file. I was just wondering if I would be able to get some advice on my htaccess file set up and if how I have it set up is a good way? I'd hate for my urls to not work in some situation because of what I have written. :(

示例 html 文件:

Example html file:

before: www.domain/subdomain/htmlpage.html after: www.domain/subdomain/htmlpage/

单个php文件:

before: www.domain/subdomain/phppage.php?p=1 after: www.domain/subdomain/phppage/1/

我添加了将 index.html 重定向到 index.php 的规则.我还不得不在每个文件的头部添加base href",因为我使用了相对链接.

I have added in a rule to redirect index.html to index.php. I've also had to add 'base href' in the head of each file because I've used relative links.

htaccess 文件:

the htaccess file:

Options +FollowSymLinks RewriteEngine on RewriteRule ^index.html?$ / [NC,R,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .*[^/]$ %{REQUEST_URI}/ [L,R=301] RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^(.+)/$ $1.html [L] RewriteRule ^(.+)/([0-9]+)/?$ phppage.php?p=$1 [L]

推荐答案

此行

RewriteRule ^(.+)/([0-9]+)/?$ phppage.php?p=$1 [L]

将把一些页面发送到 phppage.php 即使它们看起来不像

is going to send some pages to phppage.php even though they don't look like

www.domain/subdomain/phppage/1/

因为在 RewriteRule 的第一个参数中没有提到 phppage.

because there is no mention of phppage in the first argument to RewriteRule.

更多推荐

htaccess 漂亮的网址设置

本文发布于:2023-11-01 18:08:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1550037.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:漂亮   网址   htaccess

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!