出于testing的目的,我想追加一个查询string(让我们说testing=真)到我的网站要求的任何url。
比如我想改变
example.com
example.com/product
example.com/search?q=string
至
example.com? testing=真
example.com/product? testing=真
example.com/search?q=string&test = true
我试过这个:
httpS强制redirect不能在wordpress中工作
使用htaccess以https支持添加www
使用GET参数时,Apache Redirect 301失败,例如?blah =
.htaccess重写通配符subsubdomain和params
如何通过使用`RewriteRule ^(。*)$?ID = $ 1 `获取文件目录槽.htaccess?
RewriteRule ^/?(.*) http://example.com/$1?testing=true [L,R,NE]
但它打破了网站。 不是专家。
有任何想法吗?
编辑:
我应该添加我正在与CodeIgniter(PHP)和我目前的.htaccess看起来像这样:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_filename} !-f RewriteCond %{REQUEST_filename} !-d RewriteCond $1 !^(index.PHP|public|images|robots.txt|CSS) RewriteRule ^(.*)$ index.PHP/$1 [L] </IfModule>
RewriteRule ^(。*)/ $?path = $ 1 是什么意思在我的.htaccess?
.htaccess重写程序在mac上无法正常工作
如何访问目录的index.PHP没有一个结尾的斜线,并没有得到301redirect
有没有可能在.htaccess文件中输出任何或所有可用的variables?
通过htaccess在url中隐藏文件扩展名
你可以使用这个新规则:
<Ifmodulee mod_rewrite.c> RewriteEngine On RewriteCond %{query_STRING} !(^|&)testing=true(&|$) [NC] RewriteRule ^ %{REQUEST_URI}?testing=true [L,QSA,R] RewriteCond %{REQUEST_filename} !-f RewriteCond %{REQUEST_filename} !-d RewriteCond $1 !^(index.PHP|public|images|robots.txt|CSS) RewriteRule ^(.*)$ index.PHP/$1 [L] </Ifmodulee>
总结以上是内存溢出为你收集整理的使用.htaccess将查询string附加到所有URL全部内容,希望文章能够帮你解决使用.htaccess将查询string附加到所有URL所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)