以点(。)结尾的url的Htaccess重定向

时间:2018-02-20 06:08:04

标签: .htaccess url-redirection

我有一个网站,并且有一个预订页面booking.php。我想重定向在网址末尾输入点(。)的人来更正网址。

例如某个类型example.com/booking.php.然后我必须重定向到example.com/booking.php我该怎么做?

我试过但它无法正常工作

Redirect 301 http://www.example.com/appointment.php. http://www.example.com/appointment.php 

1 个答案:

答案 0 :(得分:1)

您可以使用 No repository found containing: osgi.bundle,org.eclipse.m2e.archetype.common,1.6.2.20150902-0001 No repository found containing: osgi.bundle,org.eclipse.m2e.core,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.core.ui,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.discovery,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.editor,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.editor.xml,1.6.2.20150902-0002 No repository found containing: org.eclipse.update.feature,org.eclipse.m2e.feature,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.jdt,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.jdt.ui,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.launching,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.lifecyclemapping.defaults,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.logback.appender,1.6.1.20150625-2338 No repository found containing: osgi.bundle,org.eclipse.m2e.logback.configuration,1.6.1.20150625-2338 No repository found containing: org.eclipse.update.feature,org.eclipse.m2e.logback.feature,1.6.1.20150625-2338 No repository found containing: osgi.bundle,org.eclipse.m2e.maven.indexer,1.6.2.20150902-0001 No repository found containing: osgi.bundle,org.eclipse.m2e.maven.runtime,1.6.2.20150902-0001 No repository found containing: osgi.bundle,org.eclipse.m2e.maven.runtime.slf4j.simple,1.6.2.20150902-0001 No repository found containing: osgi.bundle,org.eclipse.m2e.model.edit,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.profiles.core,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.profiles.ui,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.refactoring,1.6.2.20150902-0002 No repository found containing: osgi.bundle,org.eclipse.m2e.scm,1.6.2.20150902-0002

检查此代码:

RedirectMatch

参考:https://httpd.apache.org/docs/2.4/mod/mod_alias.html#redirectmatch

您可以使用 RedirectMatch 301 /appointment\.php\.$ /appointment.php 重定向它。

检查以下代码:

mod_rewrite

参考:http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule