I m trying to make user friendly URL using mode rewrite. My problem is, that after giving category like name to my URL, when I call the page using new URL, it can t load the CSS file or images.
我有这样的联系:
当地东道/米网站/项目?id=22
新的联系就象这样的。
当地东道/米网站/项目22/米项目。
htaccess Code:
RewriteRule ^project/([0-9]*)/.*.project$ /project.php?project=$1 [L]
(这也许不是100%的权利,但现在我没有接触过我的法典,所以我只是作此写,在原始来源上做罚款)
我的根基名录是当地的东道主/我的网站/
和我的特别安全局档案都存放在箱子/式箱子里。
localhost/mywebsite/css/style.css
我的通道
Localhost/mywebsite/htaccess
和我的项目。 php档案中
Localhost/mywebsite/project.php
因此,在项目网页上,我可以通过使用相对途径查阅安保科档案。
<link href="css/style.css" rel="stylesheet" type="text/css" />
但是,当我使用改写的URL页面时,可以发现CSS的档案。
我不能用域名来绝对走,因为我没有领域! 并且可能是任何东西。
one way is to use relative path to domain as suggested on the similar questions Localhost/mywebsite/project.php and when i run my script localy my root directory is localhost so css link should look like
href=“mywebsite/cs/type.cs”
but when i go live i should change all links to probably something like
href=”/cs/type.cs
这似乎与许多工作一样。