使用htaccess

时间:2019-01-20 10:54:23

标签: php .htaccess

我在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] 

我错过了什么。

0 个答案:

没有答案