我想为 url 末尾的查询设置一个默认变量
.htaccess 文件将 url 重定向如下:
http://www.server.com/folder/subfolder/index.php?page="some-page-name"
显示的网址
http://www.server.com/folder/some-page-name
如果没有设置页面名称,如:
http://www.server.com/folder/
默认值为“索引”。我可以使用 php 函数header("location:url")
,但如果我不想要的 url 会在末尾显示“索引”部分。
进程内容
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteBase /folder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^.*\.css.*$ [NC]
RewriteRule ^(.*)$ subfolder/index.php/?page=$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
ErrorDocument 404 /error.html
ErrorDocument 403 /error.html
</IfModule>