gpt4 book ai didi

php - 请为初学者解释这个 .htaccess 文件

转载 作者:行者123 更新时间:2023-12-03 23:05:42 25 4
gpt4 key购买 nike

我在理解如何动态组合简单的一种语言网站时遇到了一些麻烦。如果有人能用婴儿语言向我解释以下代码的每个部分的含义,我将不胜感激:

RewriteEngine On

RewriteCond %{REQUEST_URI} !\.(php|css|js|gif|png|jpe?g|pdf)$

RewriteRule (.*)$ templates/index.php [L]

先感谢您!

最佳答案

# Enable RewriteEngine to rewrite URL patterns
RewriteEngine On

# Every URI that not (! operator) ends with one of .php, .css, .js, .gif, .png, .jpg, .jpeg or .pdf
RewriteCond %{REQUEST_URI} !\.(php|css|js|gif|png|jpe?g|pdf)$

# Will be redirected to templates/index.php
RewriteRule (.*)$ templates/index.php [L]

# Sample
# /foo/bar.php -> /foo/bar.php
# /foo/bar.html -> templates/index.php

关于php - 请为初学者解释这个 .htaccess 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19702412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com