我在Cpanel中使用htaccess删除了url中的.php扩展名,但是这样做后CSS中断了。我在下面的.htaccess中使用了代码;
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
RewriteRule ^article/used/to/be/here.php$ /article/now/lives/here/ [R=301,L]
我错过了什么。