以下RewriteRule正常工作
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]
直到我把它放在正下方
RewriteRule ^([a-z0-9]+)/$ /profile/company-profile.php?cname=$1 [NC,L]
现在每个 domain.com/something-here 都会转到 company-profile.php
我该如何解决这个问题?
首先, domain.com/login 会将您带到登录文件夹的 index.php 。
当我输入第二个RewriteRule时,如果我再次写 domain.com/login ,它会显示(在后台) company-profile.php?cname = login