我的文件夹结构:
/root
- blog.php
- .htaccess
/management
/templates
/template
-style.css
-image.png
-javascript.js
我的htaccess:
RewirteEngine On
RewriteCond %{REQUEST_URI} ^/blog.update/(.*)$
RewriteRule ^blog.update/(.*)/(.*)$ /blog.php?ID=$1&title=$2 [NC,L]
RewriteCond %{REQUEST_URI} \.(jpg|png|css|js|jpeg)$
RewriteRule .....
当我打电话给我时,我喜欢将我的图片,styleshee和js文件加载到blog.php文件中。 例如:
<img src="management/templates/template/image.png" />
我的最新RewriteRule应包含哪些内容才能使其正常工作?
是的..我确实谷歌这个
不......我无法使其发挥作用
编辑: 最后链接应该是这样的: blog.update / 1 / some_title_or_something