我正在使用此.htaccess代码解决问题 没有指定Problum的输入文件。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
</IfModule>
但是在添加&#34;?&#34;这一行中的问号
RewriteRule ^(。*)$ index.php?/ $ 1 [L,QSA]在这一行
我的网址更改为http://www.vaibhavjain.in/?/Weaver 在我的上一个服务器中,我的网址是http://www.vaibhavjain.in/Weaver
我该如何删除?来自我的网址
因为在谷歌网站管理员的所有我的网址列表没有&#34;?&#34;问号。
答案 0 :(得分:0)
此.htaccess
代码对我有用。试试这个。
DirectoryIndex index.php
Options +FollowSymLinks
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
用上面提供的代码替换您当前的代码并检查。