0

我的网站中几乎没有人工编码的链接,像这样的东西

<li><a href="<?php echo $url.'/index.php/bla/bla1'?>"><span>Bla bla bla</span></a></li>

我的问题是?是否可以使用 .htaccess 删除 thoose index.php(将其放入根文件夹),方法是将其写入其中

<IfModule mod_rewrite.c>
    RewriteEngine On

    # Removes index.php from ExpressionEngine URLs
    RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
4

2 回答 2

0

你可以用 jQuery 来做,检查每个 href 属性以匹配你的模式,然后改变它。它不是那么漂亮,但无论如何,比如:

$.each($('a') , function(key , value){
...

在此处定义您的模式并更改 url ...

$(value).attr('href' , newHref);
});
于 2013-09-23T12:36:39.503 回答
0

是的,您删除了“.htaccess”中的“index.php”。

在我的一个 yii 站点中,我发现了这个,首先在本地测试它......

RewriteEngine on
# redirect www to non-www (http & https)
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php
于 2013-09-23T14:01:39.473 回答