English 中文(简体)
Redirect .html but not .html?with=options
原标题:Redirect .html but not .html?with=options
  • 时间:2010-04-06 15:23:00
  •  标签:
  • .htaccess

目前,Im利用“htaccess”与“CMS”联手处理一个问题,但任何重大和“htaccess”装置都已经瘫痪。

Im目前使用格式......

redirect 301 /pictures.html 。 http://www.domain.com/gallery.html

造成这一问题的原因是,CMS使用图片.html?vars=here来选择提纲,因此,转方向打破了这一部分。 是否有任何办法可以改变情况。 . . . . . . . . .

最佳回答

例如,增加类似内容。

RewriteCond %{QUERY_STRING} ^$

页: 1

问题回答

可以通过检测IP地址等办法,将每个人都改头:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_HOST} !^123.45.67.89
RewriteRule .html$ /alternate_page.html [R=301,L] 




相关问题
Ignore symlinks in clean URL s in .htaccess

Example URL: example.com/user /user is both a symlinked directory and a valid URL to content on my site. I user Horde Routes to request the content and all requests to the site go through index.php. ...

.htaccess File Options -Indexes on Subdirectories

I have the following .htaccess line, simple no indexes on root. Options -Indexes What do we add so it propagates to any sub directory instead of having to create one file for each? One .htaccess on ...

Mod Rewrite ignoring -d

After a day or two, I am still fighting with Mod Rewrite. It seems that 60% of my development time is spent battling the server. My current URL structure is such that all http://example.com/xyz and ...

ErrorDocument 404 Not Sending Referrer Information: PHP

I m using a standard htaccess ErrorDocument 404 to redirect users to a new page. In order to customize the 404, I need to know their referrer information (from the page they Tried to visit). $...

Find all htaccess files on server [closed]

I m looking for a Linux command to go through all the directories on my server and find all .htaccess files. The output would be a list of all those files with full path, creation/modification date ...

301 Redirect Help with Dynamic URL s and Multiple Id s

I just did a redesign for www.wildchildclothes.com which has a new URL structure. The old site ran on Zen Cart and had a bad URL structure. Here are some examples of what I want to redirect from: OLD:...

热门标签