我有一个小项目并发现了一些小错误。 每当访问http://example.com/images(不结束目录斜杠)时,我都会被重定向到http://example.com:port/images 我该如何删除它? 我的HTACCESS目前是这样的:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?action=$1 [NC,L,QSA]
答案 0 :(得分:1)
在虚拟主机中指定ServerName。它将被用作自引用链接的基础。