我有这样的网址:http://www.domain.com/index.php?token=123 我想重写网址:http://www.domain.com/123或http://www.domain.com/123/ 有了这个htaccess,我可以访问http://www.domain.com/123/,但我的css没有被加载。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^([^/]+)/$ index.php?token=$1 [L]
此致
答案 0 :(得分:0)
如果我猜对了你的问题,你相对于你的css文件链接。因此,您需要更正css文件的路径。