使用时我的 CSS 和 JS 不加载.htaccess
我用这个:
RewriteEngine On
RewriteBase /mysite/
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond $1 !^(index.php|css|images|robots.txt)
RewriteRule ^show/([A-Za-z0 -9-]+)/?$ index.php?show=$1 [NC,L] #进程鹦鹉
和 myCSS 链接:
<link href="css/my.css" rel="stylesheet" type="text/css" />
有没有办法让它工作?