微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

.htaccess多种情况的重写规则

如何解决.htaccess多种情况的重写规则

我对网址处理有非常具体的要求,但我不知道如何将所有这些内容结合在一起。

如果用户打开http://example.com/abc123,我需要进行以下更改:

  1. http://应该变成https://,然后...
  2. ...如果文件https://example.com/abc123.PHP存在,则打开abc123.PHP
  3. ...如果目录https://example.com/abc123/index.PHP存在,则打开/abc123/
  4. ...打开https://example.com/index.PHP?abcdef,即在常规abc123中使用index.PHP作为参数

对于2--4.我需要在地址栏中输入url以保留https://example.com/abc123

到目前为止,我的.htaccess中包含以下内容,我相信这些内容会处理1.和2。:

RewriteEngine On

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.PHP [L]

解决方法

我前面没有Apache服务器,但这对最后三个服务器有用吗?

# Look for URL.php as a file
RewriteCond %{REQUEST_URI}\.php -f
RewriteRule ^(.*)$ $1.php [L]

# Look for URL as a directory
RewriteCond %{REQUEST_URI} -d
RewriteRule ^(.*)$ /$1/index.php [L]

# If the URL doesn't exist on disk in another way that Apache can
# figure out,forward it to index.hp
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php [QSA,L]

编辑:以下方法效果很好:

RewriteEngine On

# http:// -> https://
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]

# -> https://example.com/abc123.php if that file exists
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [END]

# -> index.php if /abc123.php and /abc123/ don't exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ / [END]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。