xampp中的htaccess url - 不工作

时间:2014-01-01 14:36:28

标签: .htaccess url-rewriting

这就是我在网站上的设计和内容,所以首先必须在localhost上开发

我看过这段视频:https://www.youtube.com/watch?v=zVkR1FHBigk

它必须是在我完成时我只想把它扔到我需要在某处修改的服务/根据我的网址在网站上的方式自定义它;)

目前我写的是例如index.php所以它将是/ Cover /而不仅仅是前面/

例如,如果我写写到另一边然后我说index.php,但是希望它是/ Cover /

例如,当我需要下载图片时,我会这样做:

<img src="img/nyhederinto/hej.png">

他们希望有这样的

<img src="/img/nyhederinto/hej.png">

我在这里试试:

Options +FollowSymLinks
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.* - [L] 

RewriteCond %{REQUEST_FILENAME} !-f
ErrorDocument 404 /404.php



RewriteRule ^forside/ index.php

1 个答案:

答案 0 :(得分:0)

例如,如果您的文件夹是test in,则需要设置Rewrite base www目录在你的htacess中添加这段代码。

RewriteBase /test/

或者确保在你的apache配置文件httpd.conf中不应该注释这一行

LoadModule rewrite_module modules/mod_rewrite.so